18.09.2013, 17:23
entao fica assim
pawn Code:
public OnRconLoginAttempt(ip[], password[], success)
{
new pip[16];
for(new i = (MAX_PLAYERS - 1); i > -1; --i)
{
GetPlayerIp(i, pip, sizeof(pip));
if(success)
{
if(!strcmp(ip, pip, true))
{
SendClientMessage(i, -1,"Vocк errou a senha RCON. Tome cuidado!");
}
}
break;
}
return 1;
}