Find the location of the mapping.
#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


Messages In This Thread
Find the location of the mapping. - by TheSy - 26.04.2014, 17:58
Re: Find the location of the mapping. - by Affan - 26.04.2014, 18:10
Re : Find the location of the mapping. - by Ramoboss - 26.04.2014, 18:12
Re : Find the location of the mapping. - by TheSy - 26.04.2014, 18:18
Re : Find the location of the mapping. - by Ramoboss - 26.04.2014, 18:20

Forum Jump:


Users browsing this thread: 1 Guest(s)