_Skyline, ничего не получилось.
Код
#include <amxmodx>
#include <hamsandwich>
#include <colorchat>
#define PLUGIN "Team Alert"
#define VERSION "0.1"
#define AUTHOR "Stimul"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
register_dictionary("teamalert.txt")
RegisterHam(Ham_Spawn, "player", "fbft", 1);
}
public fbft(id)
{
set_task(3.0, "fwSpawnPost", 1613)
}
public fwSpawnPost(id)
{
if(is_user_connected(id))
{
new Team = get_user_team(id);
if(Team == 1)
{
ColorChat(id, NORMAL, "^4[INFO]^1 %L", LANG_PLAYER, "TEAM_TT");
}
else if(Team == 2)
{
ColorChat(id, NORMAL, "^4[INFO]^1 %L", LANG_PLAYER, "TEAM_CT");
}
}
}