PHP Code:
#include <amxmodx>
#include <fakemeta>
#define PLUGIN "TEST"
#define VERSION "1.0"
#define AUTHOR "Ice-Action |#KeyBlade"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("Round_Start_Event", 2, "1=Round_Start")
}
public Round_Start_Event(id)
{
new TEAM = get_pdata_int(id, 114, 5)
client_print(id, print_chat, "%d", TEAM)
}