26.03.2010, 13:27
i have this error
at line i have this script:
complete script
pawn Код:
D:\Users\Administrator\Desktop\Holliwood FIX\gamemodes\larp.pwn(11561) : error 017: undefined symbol "PLAYERS"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
pawn Код:
for(new i = 0; i < PLAYERS; i++)
pawn Код:
public SendWTMessage(channel, color, string[])
{
for(new i = 0; i < PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(PlayerInfo[i][pWTc] == channel)
{
SendClientMessage(i, color, string);
}
}
}
}