View Single Post
thenumb3rguy
Senior Member
Join Date: Oct 2012
Location: Hong Kong
Old 11-18-2012 , 10:00   Re: [CSGO]Force mp_autoteambalance 0
Reply With Quote #3

Quote:
Originally Posted by Zephyrus View Post
PHP Code:
#include <sourcemod>
 
public Plugin:myinfo 
{
        
name "Team balance fix",
        
author "Hours Played, Inc.",
        
description "Fix for uneven teams",
        
version "1.0"
};
 
public 
OnPluginStart()
{
    
HookConVarChange(FindConVar("mp_autoteambalance"), Changed)
}
 
public 
Changed(Handle:cvar, const String:oldValue[], const String:newValue[])
{
     
SetConVarInt(cvar0);

Thanks, I have updateded it with your code.
thenumb3rguy is offline