Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/19/18 in all areas

  1. Version 1.1.1

    2199 downloads

    Just a small script that displays your location and vehicle speed (if you're in one) next to the mini map. https://github.com/glitchdetector/fivem-minimap-anchor - credits for minimap anchor code Notes You can disable speed display feature by setting useSpeedo to false. Location and speed won't be displayed if your radar is disabled or hidden. Speed unit changes based on your Measurement System setting of GTA V, which you can find in Settings -> Display -> Measurement System.
    1 point
  2. Version 1.1.0

    1225 downloads

    This script reads outfits from scriptmetadata.meta and lets you use them in game. There are currently 1382 outfits for both male and female freemode characters. Using: /outfit [id] Updating scriptmetadata.meta scriptmetadata.meta gets more outfits with every update, here's how you can update it: OpenIV: Go to update\update.rpf\common\data Right click on scriptmetadata.meta Select save content/export Take the extracted file and replace it with the one your server is using CodeWalker RPF Explorer: Go to update\update.rpf\common\data Right click on scriptmetadata.meta Select extract raw Take the extracted file and replace it with the one your server is using Notes Some outfit IDs might do nothing, ask Rockstar In RAGE version 0.3, drawable IDs above 255 aren't supported so you might have some weird looking outfits. From what I heard this is not a problem in upcoming 0.4. Credits to OpenIV and CodeWalker devs, this script wouldn't be possible without their efforts.
    1 point
  3. Hello Team Rage MP. You could release an area in the forum for Brazilians. And an area for agent posts scripts, mods, Brazilian servers on the site. I hope you see this and release!
    1 point
  4. I can't translate but it looks like the error people get when they have an antivirus installed. Try disabling it and try again.
    1 point
  5. I'm thinking that RAGE better with JS only, not with Lua.
    1 point
  6. function showSpeed() { const player = mp.players.local; if (player.isSittingInAnyVehicle(true)) { let velocity = player.vehicle.getVelocity(); let speed = Math.sqrt(velocity.x * velocity.x + velocity.y * velocity.y + velocity.z * velocity.z); speed = Math.round(speed) mp.game.graphics.drawText(`Speed: ${speed}`, [0.825, 0.875], { font: 6, color: [255, 255, 255, 255], scale: [0.9, 0.9], outline: true }); } } mp.events.add('render', () => { showSpeed(); });
    1 point
×
×
  • Create New...