18.02.2011, 10:08
what wrong here this is spamming
pawn Код:
public PointCheck()
{
new string[128];
for(new p = 0; p < sizeof(PointInfo); p++)
{
if(PointInfo[p][PointTime] == 0)
{
format(string, sizeof(string), "The %s has become available to capture.",PointInfo[p][PointName]);
SendClientMessageToAll(COLOR_YELLOW, string);
PointInfo[p][PointTaken] = 255;
AnnouncePoint();
}
}
return 1;
}

