06.10.2012, 15:29
Hola Como Estan Me Esta Dando Un Error Al Copilar Ayudenme Aqui
PHP код:
C:\Users\Farius\Desktop\gm by ronald\lvdm.pwn(2541) : error 030: compound statement not closed at the end of file (started at line 2526)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
PHP код:
public OnRconLoginAttempt(ip[], password[], success)
{
new pip[16], Nombre[MAX_PLAYER_NAME];
for(new i=0; i<MAX_PLAYERS; i++)
{
GetPlayerName(i,Nombre,sizeof(Nombre));
GetPlayerIp(i, pip, sizeof(pip));
if(!strcmp(ip, pip, true))
{
SendClientMessage(i, 0xFFFFFFFF, " ");
SendClientMessage(i, 0xFFFFFFFF, "Has sido {FF0000}expulsado {FFFFFF}por intentar acceder como administrador RCON.");
GameTextForPlayer(i, "/w/ANTI RCON LOGIN", 10000, 3);
TogglePlayerControllable(i, false);
Kick(i);
}
}
return 1;