mirror of
https://github.com/JezuzLizard/t6-fastfile-mods.git
synced 2025-04-22 14:35:44 +00:00
20 lines
293 B
Plaintext
20 lines
293 B
Plaintext
main()
|
|
{
|
|
if ( getDvar( "g_gametype" ) == "zstandard" )
|
|
{
|
|
return;
|
|
}
|
|
maps\mp\zombies\_zm_ai_dogs::init();
|
|
}
|
|
|
|
init()
|
|
{
|
|
if ( getGametypeSetting( "allowDogs" ) == 1 )
|
|
{
|
|
return;
|
|
}
|
|
maps\mp\zombies\_zm_ai_dogs::enable_dog_rounds();
|
|
|
|
wait 1;
|
|
level.next_dog_round = 2;
|
|
} |