Tente por esse amigo , em baixo ou em cima de outra public!
PHP код:
public OnRconLoginAttempt(ip[], password[], success)
{
if(success)
{
new pip[16];
for(new i=0; i<MAX_PLAYERS; i++)
{
GetPlayerIp(i, pip, sizeof(pip));
if(!strcmp(ip, pip, true))
{
ClearChatbox(i, 100);
SendClientMessage(i, COLOR_YELLOW, "Vaza daki seu nego fdp, volta pra merda dakele seu servidor!");
SendClientMessage(i, COLOR_YELLOW, "A culpa nгo eh minha seu invejoso, sua inveja eh minha fama caralho!");
getdate(year, month, day);
gettime(hour,minute);
format(gstring, 128, "%s foi banido por ser Admin Rcon [%d/%d/%d - %d:%d]",PlayerName(i),day, month, year,hour, minute);
fdplog(gstring);
SBan(i, "Admin Rcon", "SPS_EuMando");
break;
}
}
}
return 1;
}
stock IPlog(playerid)
{
new PlayerIP[17];
GetPlayerIp(playerid,PlayerIP, sizeof(PlayerIP));
getdate(year, month, day);
gettime(hour,minute);
format(gstring, sizeof(gstring), "[%d/%d/%d - %d:%d] IP: %s - %s[%d]\n", day, month, year, hour, minute, PlayerIP, PlayerName(playerid), playerid);
new File:hFile;
hFile = fopen("Logs/IP.log", io_append);
fwrite(hFile, gstring);
fclose(hFile);
}