Quote:
Originally Posted by MeRcyLeZZ
There probably is an offset for that
|
That is what i thought, haven't tested yet
-edit-
PHP Code:
#include <amxmodx>
#include <fakemeta>
#define PLUGIN "Unlimited ChooseTeam"
#define AUTHOR "ConnorMcLeod"
#define VERSION "0.0.1"
public plugin_init()
{
register_plugin( PLUGIN, VERSION, AUTHOR )
register_clcmd("chooseteam", "ClientCommand_ChooseTeam")
}
public ClientCommand_ChooseTeam( id )
{
set_pdata_int(id, 125, get_pdata_int(id, 125, 5) & ~(1<<8), 5)
}
__________________