19.01.2010, 22:18
when i make this i always get this
C:\Users\Admin\Desktop\gamemodes\lvrcr1.pwn(3663) : error 054: unmatched closing brace ("}")
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Ps: i forwarded it made timer and everything
C:\Users\Admin\Desktop\gamemodes\lvrcr1.pwn(3663) : error 054: unmatched closing brace ("}")
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Код:
public AutoUncuff()
{
for(new i=0; i < MAX_PLAYERS; i++)
{
if (IsPlayerConnected(i))
{
if(cuffed[i] == 1)
{
new pname[24];
GetPlayerName(i, pname, 24);
new string[256];
SendClientMessage(i, 0xA9A9A9AA, "|_Released From Cuffs_|");
SendClientMessage(i,0x00C7FFAA,"You have been auto-released from cuffs. You are free to walk again");
format(string, sizeof(string), "%s(%d) Has been auto-released from cuffs to stop cuff abuse.",pname,i);
SendClientMessageToAll(0x00C7FFAA, string);
cuffed[i] =0;
}
}
}
}
}

