21.01.2012, 05:02
any way to make this? and when u enter the zone it will say "You have entered a gang territory."
stock IsPlayerInArea(playerid, Float:max_x, Float:min_x, Float:max_y, Float:min_y)
{
new Float:Xa, Float:Ya, Float:Za;
GetPlayerPos(playerid, Xa, Ya, Za);
if(Xa <= max_x && Xa >= min_x && Ya <= max_y && Ya >= min_y) return 1;
return 0;
}