mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-07 21:59:49 -05:00
Remove certain dvars
This commit is contained in:
parent
6b2dc6d16c
commit
04252e9420
@ -437,33 +437,6 @@ set_dvars()
|
||||
|
||||
setDvar("sv_voice", 2);
|
||||
setDvar("sv_voiceQuality", 9);
|
||||
|
||||
setDvar("sv_cheats", 0);
|
||||
|
||||
if (getDvar("hud_timer") == "")
|
||||
{
|
||||
setDvar("hud_timer", 1);
|
||||
}
|
||||
|
||||
if (getDvar("hud_enemy_counter") == "")
|
||||
{
|
||||
setDvar("hud_enemy_counter", 1);
|
||||
}
|
||||
|
||||
if (getDvar("hud_health_bar") == "")
|
||||
{
|
||||
setDvar("hud_health_bar", 1);
|
||||
}
|
||||
|
||||
if (getDvar("hud_zone_name") == "")
|
||||
{
|
||||
setDvar("hud_zone_name", 1);
|
||||
}
|
||||
|
||||
if (getDvar("disable_character_dialog") == "")
|
||||
{
|
||||
setDvar("disable_character_dialog", 0);
|
||||
}
|
||||
}
|
||||
|
||||
set_client_dvars()
|
||||
@ -568,11 +541,6 @@ enemy_counter_hud()
|
||||
|
||||
flag_wait("hud_visible");
|
||||
|
||||
if (!getDvarInt("hud_enemy_counter"))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
hud.alpha = 1;
|
||||
|
||||
while (1)
|
||||
@ -641,11 +609,6 @@ timer_hud()
|
||||
|
||||
flag_wait("hud_visible");
|
||||
|
||||
if (!getDvarInt("hud_timer"))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
hud.alpha = 1;
|
||||
|
||||
if (!flag("initial_blackscreen_passed"))
|
||||
@ -692,11 +655,6 @@ round_timer_hud()
|
||||
|
||||
hud thread set_time_frozen_on_end_game();
|
||||
|
||||
if (!getDvarInt("hud_timer"))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
hud.alpha = 1;
|
||||
|
||||
if (!flag("initial_blackscreen_passed"))
|
||||
|
@ -22,11 +22,6 @@ create_and_play_dialog(category, type, response, force_variant, override)
|
||||
return;
|
||||
}
|
||||
|
||||
if (getDvarInt("disable_character_dialog"))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
isresponse = 0;
|
||||
alias_suffix = undefined;
|
||||
index = undefined;
|
||||
|
Loading…
x
Reference in New Issue
Block a user