Finding interior id and coords (MapEditor)
#1

I wanna find a interior for my house. How do I find interiors with their ids and coords with MapEditor?
Reply
#2

Quote:
Originally Posted by ee100
I wanna find a interior for my house. How do I find interiors with their ids and coords with MapEditor?
Not sure which map editor you're using, with SA-MP you can go in-game and type /interior. (is that still in 0.3?)
Or you can look at this list: https://sampwiki.blast.hk/wiki/Interiors
Reply
#3

I can do /interior.. but I still need coords..
Reply
#4

Quote:
Originally Posted by ee100
I can do /interior.. but I still need coords..
Just put /save comment, then, go to Rockstar Games\GTA San Andreas folder and open savedpositions.txt
Reply
#5

Quote:
Originally Posted by Fedee!
Quote:
Originally Posted by ee100
I can do /interior.. but I still need coords..
Just put /save comment, then, go to Rockstar Games\GTA San Andreas folder and open savedpositions.txt
Done it.. but what is X,Y,Z and the ID? I cant see it =S
Reply
#6

The saved ones are: PlayerSkin, X, Y, Z, Angle. Dont mind the 6 0's.

Try this list instead of the one on the wiki. The wiki list SUCKS.

http://weedarr.wikidot.com/interior
Reply
#7

Already found out the inf to the interior i want.



Does this make sense?


ID: 5
X: 246.1914
Y: 1112.5812
Z: 1085.0160
Reply
#8

The best way to find it out is testing

pawn Код:
OnPlayerText(playerid, text[])
{
  if(strcmp(text, "takeme", true) == 0)
  {
    SetPlayerInterior(playerid, 5);
    SetPlayerPos(playerid, 246.1914, 1112.5812, 1085.0160);
    SendClientMessage(playerid, COLOR, "Is this the interior you wanted to see?");
    return 0;
  }
  return 1;
}
You don't need to use what I posted above but that's a fast solution (testing).
Reply
#9

How do I check it? I am not that good at PAWNO... Wrote the code in pawno and saved it. what next?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)