stranded island!
#1

i wanted to make the class selection on that stranded island but i lost the co-ords for it, so i would appreciate if someone could post it!

Thanks A Bunch!
Reply
#2

Quote:
Originally Posted by Ethan1123
i wanted to make the class selection on that stranded island but i lost the co-ords for it, so i would appreciate if someone could post it!

Thanks A Bunch!
Cant you just go to it ingame and /save?
Reply
#3

what starnded island?
Reply
#4

1. Go to the island
2. Type /save
3. Open up windows explorer, find your GTA installation directory and open the file savedpositions.txt
4. The last line contains the coords, it looks like this probably:
Код:
AddPlayerClass(120,1632.0674,-1172.5106,24.0843,143.0532,0,0,0,0,0,0);
5. Grab the 2nd, 3rd and 4th value (in this case 1632.0674, -1172.5106 and 24.0843), those are your X, Y and Z coordinates
6. If you also need a facing angle, that's the 5th value in that line (143.0532 in my example)

7. You're done
Reply
#5

i did go ingame and /save-d but i have vista and something want wrong and i cant find the co-ords anymore (i saved the co-ord like 1 week ago)
=/
Reply
#6

Quote:
Originally Posted by Rav
1. Go to the island
2. Type /save
3. Open up windows explorer, find your GTA installation directory and open the file savedpositions.txt
4. The last line contains the coords, it looks like this probably:
Код:
AddPlayerClass(120,1632.0674,-1172.5106,24.0843,143.0532,0,0,0,0,0,0);
5. Grab the 2nd, 3rd and 4th value (in this case 1632.0674, -1172.5106 and 24.0843), those are your X, Y and Z coordinates
6. If you also need a facing angle, that's the 5th value in that line (143.0532 in my example)

7. You're done
im not stuped i know what to do, i didnt ask for the tut, i asked for the loc co-ords because i saved them on ANOTHER server a while ago and now i need them
Reply
#7

Why does using vista always get used an excuse, i've been using Vista for a year now and i have yet to encounter a problem.
Reply
#8

so anyone know?
Reply
#9

Put this in your gamemode
Код:
if(strcmp(cmdtext, "/mypos", true)==0)
{
  new Float:X, Float:Y, Float:Z, Float:A, str[128];
  GetPlayerPos(playerid, X, Y, Z);
  GetPlayerFacingAngle(playerid, A);
  if(IsPlayerInAnyVehicle(playerid))
  {
    GetVehicleZAngle(GetPlayerVehicleID(playerid), A); 
  }  
  format(str, 128, "Your position: %.3f, %.3f, %.3f Facing Angle: %.2f", X, Y, Z, A);
  SendClientMessage(playerid, 0xFFFF00AA, str);
  return 1;
}
Now go to right location, use /mypos
Grab a paper and pencil and write down the postion showing in chatbox.
Reply
#10

i guess you poeple have trouble reading, let me say it one more time.

I NEED TO KNOW THE POSITION COORDS, I HAVE NO IDEA WHERE IT IS THAT WHY IM ASKING, THAT MEANS I CANT SAVE THE POSITION OR LOOK AT IT BECAUSE I HAVE NO IDEA WHERE IT IS.

if you still have trouble, just read that over and over until you finally understand
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)