Search the Community

Showing results for tags 'ipls'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • RAGE Multiplayer
    • Announcements
    • Discussion
    • Suggestions
    • RDR2 Multiplayer
  • Scripting
    • Scripting
    • Resources
  • Community
    • Support
    • Servers
    • Media Gallery
  • Non-English
    • Русский - Russian
    • Français - French
    • Deutsch - German
    • Espanol - Spanish
    • Română - Romanian
    • Portuguesa - Portuguese
    • Polski - Polish

Categories

  • Scripts
  • Gamemodes
  • Libraries
  • Plugins
  • Maps
  • Tools

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me


Facebook


Youtube


Skype


Web


VK

Found 1 result

  1. 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); });