19.11.2014, 17:58
I'll show you the codes i am using to make it work
Код:
SafeZone = GangZoneCreate(2972.0000, 581.7188, 676.0000, 2930.0000);
Код:
stock IsPlayerInArea(playerid,Float:max_x,Float:min_x,Float:max_y,Float:min_y) { new Float:X; new Float:Y; new Float:Z; GetPlayerPos(playerid, X, Y, Z); if(X <= max_x && X >= min_x && Y <= max_y && Y >= min_y) { return 1; } return 0; }