View Single Post
Zephyrus
Cool Pig B)
Join Date: Jun 2010
Location: Hungary
Old 11-18-2012 , 09:33   Re: [CSGO]Force mp_autoteambalance 0
Reply With Quote #2

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);

__________________
Taking private C++/PHP/SourcePawn requests, PM me.
Zephyrus is offline