View Single Post
Antithasys
Moderator
Join Date: Apr 2008
Old 09-10-2008 , 02:17   Re: TF2 Auto Scramble Teams
Reply With Quote #6

yes

Code:
new bool:IsArenaMode = false;
 
public OnPluginStart()
{
     TFGameModeArena = FindConVar("tf_gamemode_arena");
}
 
public OnMapStart()
{
     if (GetConVarInt(TFGameModeArena))
          IsArenaMode = true;
}
Then run a logic statement based upon IsArenaMode.

P.S. This works because the cvar is either a 1 or 0. If it's not in arena mode it's 0 or false, otherwise it's true.

Last edited by Antithasys; 09-10-2008 at 02:34.
Antithasys is offline