12.07.2013, 12:04
pawn Код:
IsAtPoint(playerid)
{
for(new i = 0; i < 18; i ++) // loop through all positions (0-17)
{
// check whether a player is in range (10.0) of this (i.e 0, 1 till 17) index pos
if(IsPlayerInRangeOfPoint(playerid, 10.0, Zapfsaeulenpos[i][0], Zapfsaeulenpos[i][1], Zapfsaeulenpos[i][2]))
return 1; // return true
}
return 0; // return false
}

