Jump to content

Leaderboard

Popular Content

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

  1. 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
  2. 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
  3. I'm thinking that RAGE better with JS only, not with Lua.
    1 point
  4. 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...