Quote:
|
Originally Posted by ♣ ⓐⓢⓢ
Quote:
|
Originally Posted by Headshot1108
ok, here are the coordinates.
1653.387, -2771.438, 2341.7, -2396.403
|
Xtreme visual mapper put the cordinates in the maxX, minX, maxY, minY oder
And you got the function in the minX, maxX, minY, maxY
So just swap it a bit to
-2771.438, 1653.387, -2396.403, 2341.7
Offtopic
Quote:
|
Originally Posted by FUNExtreme
Quote:
|
Originally Posted by [M2S
moe ]
Its amazing that most people "helping" have no idea what they're saying...
...
(public functions using a timer people?)
...
|
Learn to script before you start "helping"(see above)
|
Ignore them, there are always people who thinks they know everythings better (even it isnt true)
|
hmm, dont work...
my isplayerinare is this:
stock IsPlayerInArea(playerid, Float:minx, Float:maxx, Float:miny, Float:maxy)
{
new Float

, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
if (x > minx && x < maxx && y > miny && y < maxy) return 1;
return 0;
}