Compatibility
Fully functional and compatible with vRPex / vRP / ESX / QBCore and Others
MP/H or KM/H Display
You can choose which unit of measurement is best for you
Fuel Display
Displays the amount of gasoline in the vehicle
Current Gear
Gear indicator on vehicle
Nitrous
Just trigger the TriggerEvent('sendNosVehicle', 100) event sending the amount of nitro to display on the HUD. The speedometer only displays the amount of NOS available, it does not manipulate or push the vehicle.
Configuration
Just start the script in your server, add in server.cfg start speedometer
Support
We did everything to make sure that the speedometer is working properly. In case of any bug we will be available to correct and assist you in the configuration and installation.
Files encrypted by escrow
Media
Code is accessible
No, but have customization files (FiveM Escrow System)
This is what i made for myself , you can use this
Add this in client->cuztomizable.lua
After adding this you can either type /speedo or press F10 to show/hide the speedometer
You can change the F10 key to whatever you want , just change in the code below in the RegisterKeyMapping function
RegisterCommand("speedo", function(_, args)
ToggleDisplay()
end, false)
RegisterKeyMapping('speedo', 'Enable or disable speedometer', 'keyboard', 'f10')
function ToggleDisplay()
if isHudHidden then
isHudHidden = false
else
SendNUIMessage({HideHud = true})
isHudHidden = true
end
end