State Valentin Posted January 18, 2019 Posted January 18, 2019 The result is always this: 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); });
TheStronght Posted January 20, 2019 Posted January 20, 2019 mp.game.streaming.requestIpl(IPLName); IPL LIST: https://wiki.rage.mp/index.php?title=Interiors_and_Locations
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now