mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-12 08:08:00 -05:00
Team voice
Encounter: all voice on intermission
This commit is contained in:
@ -277,6 +277,8 @@ set_dvars()
|
|||||||
|
|
||||||
setDvar( "sv_patch_zm_weapons", 0 );
|
setDvar( "sv_patch_zm_weapons", 0 );
|
||||||
setDvar( "sv_fix_zm_weapons", 1 );
|
setDvar( "sv_fix_zm_weapons", 1 );
|
||||||
|
|
||||||
|
setDvar( "sv_voice", 2 );
|
||||||
}
|
}
|
||||||
|
|
||||||
set_client_dvars()
|
set_client_dvars()
|
||||||
|
@ -75,6 +75,7 @@ init()
|
|||||||
level thread unlimited_powerups();
|
level thread unlimited_powerups();
|
||||||
level thread remove_round_number();
|
level thread remove_round_number();
|
||||||
level thread remove_status_icons_on_intermission();
|
level thread remove_status_icons_on_intermission();
|
||||||
|
level thread all_voice_on_intermission();
|
||||||
level thread random_map_rotation();
|
level thread random_map_rotation();
|
||||||
level thread spawn_bots();
|
level thread spawn_bots();
|
||||||
}
|
}
|
||||||
@ -2209,6 +2210,13 @@ remove_status_icons_on_intermission()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
all_voice_on_intermission()
|
||||||
|
{
|
||||||
|
level waittill("intermission");
|
||||||
|
|
||||||
|
setDvar("sv_voice", 1);
|
||||||
|
}
|
||||||
|
|
||||||
race_init()
|
race_init()
|
||||||
{
|
{
|
||||||
level.race_round_increment_time = 60;
|
level.race_round_increment_time = 60;
|
||||||
|
Reference in New Issue
Block a user