City Coordinates?
#1

Does anyone have Minimum X,Y and Maximum X,Y coordinates for Los Santos, Las Venturas And San Fierro?
Like for IsPlayerInArea to cover LS, And again for LV and SF, Anyway, Anyone got em? Individual cities would be fine,
Just as long as you have the coordinates for atleast one of them
Reply
#2

You can use /save on the lower point and /save on the highest.
Grab out the coords and script with it.
Reply
#3

I could do that, But i cant get it accurate,
Reply
#4

Torran try this , it may help :
http://www.mediafire.com/?mwnwhzjmjmh
________
ZX14 VS HAYABUSA
Reply
#5

As i said i cant get it accurate, It overlaps
What im technically asking is is there something to check what city the players in
Reply
#6

Name minX minY maxX maxY
ls = 116.7788, -2826.046, 2907.791, -595.5717
lv = 840.807, 525.5044, 2942.825, 2954.502
sf = -2954.502, -794.0955, -969.2637, 1588.191

pawn Код:
stock IsPlayerInArea(playerid, Float:minX, Float:minY, Float:maxX, Float:maxY)// Same x and y param thingys as gangzonecreate
{
  new Float:X, Float:Y, Float:Z;
  GetPlayerPos(playerid, X, Y, Z);
  if(X <= maxX && X >= minX && Y <= maxY && Y >= minY) return 1;
  return 0;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)