09.02.2011, 01:00
alright so this is my only error and I want to know how to fix it at last.
here is the code(s):
I also have the forward if you want:
here is the code(s):
Код:
stock IsPlayerInZone(playerid, zone[])
{
new TmpZone[MAX_ZONE_NAME];
GetPlayer3DZone(playerid, TmpZone, sizeof(TmpZone));
for(new i = 0; i != sizeof(gSAZones); i++)
{
if(strfind(TmpZone, zone, true) != -1)
return 1;
}
return 0;
}
Код:
forward IsPlayerInZone(playerid, zoneid);


