10.06.2015, 23:43
I don't unserstand what is the error here:
And for the full code:
?!
PHP код:
KillTimer(CaptureTime);
PHP код:
public OnPlayerUpdate(playerid)
{
if(capturing[playerid] == true)
{
for(new i = 0; i < sizeof(ZoneInfo);i++)
{
if(IsPlayerIsNotInZone(playerid, i))
{
capturing[playerid] = false;
KillTimer(CaptureTime);
captureTimer[playerid] = 180;
SendClientMessage(playerid, COLOR_RED, "Capture Failed!");
}
}
}
return 1;
}