2023-04-11 16:44:59 -02:30
|
|
|
if Engine.GetCurrentMap() ~= "core_frontend" then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2023-04-18 09:30:52 -02:30
|
|
|
if CoD.LobbyMember then
|
|
|
|
local oldLobbyMember = CoD.LobbyMember.new
|
|
|
|
function CoD.LobbyMember.new(menu, controller)
|
|
|
|
local self = oldLobbyMember(menu, controller)
|
|
|
|
|
|
|
|
-- Hide the playlist count text
|
|
|
|
if self.SearchingForPlayer then
|
|
|
|
self.SearchingForPlayer:setAlpha(0)
|
|
|
|
end
|
|
|
|
if self.FEMemberBlurPanelContainer0 then
|
|
|
|
self.FEMemberBlurPanelContainer0:setAlpha(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
return self
|
2023-04-17 00:45:46 -02:30
|
|
|
end
|
2023-04-11 17:21:53 -02:30
|
|
|
end
|
|
|
|
|
|
|
|
function IsLobbyStatusVisible()
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2023-04-15 05:29:01 -02:30
|
|
|
Engine.SetDvar("lobbyMigrate_Enabled", 0)
|
|
|
|
Engine.SetDvar("lobbyTimerStatusVotingInterval", 11000)
|
|
|
|
Engine.SetDvar("lobbyTimerStatusBeginInterval", 10)
|
|
|
|
Engine.SetDvar("lobbyTimerStatusStartInterval", 10)
|
|
|
|
Engine.SetDvar("lobbyTimerStatusPostGameInterval", 10)
|
|
|
|
Engine.SetDvar("lobbyTimerStatusVotingInterval_Arena", 11000)
|
2023-04-11 17:21:53 -02:30
|
|
|
|
2023-04-15 05:19:26 -02:30
|
|
|
require("widget_playlist_match_settings_info")
|
2023-04-15 05:29:01 -02:30
|
|
|
require("widget_playlist_category_match_settings_info")
|