Jump to content

Recommended Posts

Posted

The result is always this:

83jZQRx.png

Why ? For example if i try to get into this interior:

Regal 1 Apartment apa_v_mp_h_07_a new Vector3(-787.029, 315.7113, 217.6385);

 

Where is my mistake ? 

 

//client-side

mp.events.add('loadInterior', (x,y,z,ipl) => {
  var interior = mp.game.interior.getInteriorAtCoords(x, y, z);
  mp.game.interior.enableInteriorProp(interior, ipl);
  mp.game.interior.refreshInterior(interior);
});

//server-side

mp.events.addCommand("gotoxyz", (player, fullText, x, y, z, ipl) => {
  player.outputChatBox("You teleported.");
  player.position = new mp.Vector3(x,y,z);
  player.call('loadInterior', [x,y,z, ipl]);
  console.log('x: ' + x + ' y: ' + y + ' z: ' + z + ' ipl: ' + ipl);
});

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...