Find the location of the mapping.
#1

Hello,

I have a mapping Los Santos of about 5000 lines.

The trouble is that it takes me a few places, but nothing is commented in the mapping so suddenly I do not know what is what.

How?

thank you
Reply
#2

First, take the first map's cordinate, it's like this or should be similiar
Example :
pawn Код:
CreateObject(7983, -3065.11597, 469.68549, 23.63828,   0.00000, 0.00000, -38.27998);
-3065.11597 = X
469.68549 = Y
23.63828 = Z

pawn Код:
COMMAND:gotomap(playerid)
{
   SetPlayerPos(playerid,-3065.11597, 469.68549, 23.63828) // SetPlayerPos(playerid, X, Y , Z);
   return 1;
}
Then go to the map, and find a good spawn location and do /save then Documents > Gta San Andreas User Files > SAMP > savedpositions.txt and find the
Example:
pawn Код:
AddPlayerClass(0,-252.3017,2606.5032,62.8582,4.4308,0,0,0,0,0,0);
-252.3017 = X
2606.5032 = Y
62.8582 = Z

Then again same procedure as before
pawn Код:
COMMAND:map(playerid)
{
   SetPlayerPos(playerid, -252.3017,2606.5032,62.8582); // SetPlayerPos(playerid, X, Y , Z);
   return 1;
}
Reply
#3

pawn Код:
CMD:gotoxyz(playerid, params[])
{
  new Float:x, Float:y, Float:z;
  if(sscanf(params, "fff", x, y, z)) SendClientMessage(playerid, 0xFF0000AA, "Use: /gotoxyz <x> <y> <z>");
  else
  {
   SetPlayerPos(playerid, x, y, z);
   SendClientMessage(playerid, 0xFF0000AA, "You have been teleported to your XYZ Coords !");
  }
  return 1;
}
here a command that might help you, you just have to tip the position of the object
/gotoxyz xposition yposition zposition
and it Teleport you...
it's very useful for your futur tests !
Reply
#4

I know that thank you.

What I want to know is if there is not a software or I get my mappings codes and it told me what areas ^ ^

I have 5000 rows and if I gotta do it all one by one, no thank you
Reply
#5

try this : https://sampforum.blast.hk/showthread.php?tid=282801

but dude, when you teleport to an object, you'll find all the other objects x)

there is no 5000 objects arround all the map no ?
it's all in one area...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)