23.07.2012, 17:12
In server.cfg prescribed "rcon 0", but it does not help to shut down =(
Written in the fashion your admin script, so I do not need rkon.
Written in the fashion your admin script, so I do not need rkon.
public OnRconLoginAttempt(ip[], password[], success)
{
if(!success)
{
for(new i=0; i<MAX_PLAYERS; i++)
{
SendClientMessage(i, 0xFFFFFFFF, "RCON Disabled!");
Kick(i); //or Ban(i);
}
}
return 1;
}