mirror of
https://github.com/JezuzLizard/Recompilable-gscs-for-BO2-zombies-and-multiplayer.git
synced 2025-06-10 02:37:59 -05:00
31 lines
658 B
Plaintext
31 lines
658 B
Plaintext
|
|
init() //checked matches cerberus output
|
|
{
|
|
if ( !isDefined( game[ "flagmodels" ] ) )
|
|
{
|
|
game[ "flagmodels" ] = [];
|
|
}
|
|
if ( !isDefined( game[ "carry_flagmodels" ] ) )
|
|
{
|
|
game[ "carry_flagmodels" ] = [];
|
|
}
|
|
if ( !isDefined( game[ "carry_icon" ] ) )
|
|
{
|
|
game[ "carry_icon" ] = [];
|
|
}
|
|
game[ "flagmodels" ][ "neutral" ] = "mp_flag_neutral";
|
|
}
|
|
|
|
customteam_init() //checked matches cerberus output
|
|
{
|
|
if ( getDvar( "g_customTeamName_Allies" ) != "" )
|
|
{
|
|
setdvar( "g_TeamName_Allies", getDvar( "g_customTeamName_Allies" ) );
|
|
}
|
|
if ( getDvar( "g_customTeamName_Axis" ) != "" )
|
|
{
|
|
setdvar( "g_TeamName_Axis", getDvar( "g_customTeamName_Axis" ) );
|
|
}
|
|
}
|
|
|