ESX Clean Dirty Money, Bank & Job Title Display Fade?

Hey Im looking to add a fadeout for the job title and your bank as well as dirty money and clean money to fade out and display if you type
/cash
/dirtymoney
/job
/bank
to see your money and they will appear when you do those things that would be awesome if someone could assist me with that.

Looking to have them toggleable so they are not on screen at all times so there is more screen space using ESX & ESX_Extended

2 Likes

You need to make a new script or add those commands and then remove the HUD.

I could have a look for you, i’ll pm if i find a solution.

1 Like

Depends what is your server base, if it is esx, standalone or vrp.

Quite sure his title is ESX :wink:

1 Like

its for sure based off ESX, I find ESX a great base

1 Like

Did you ever find a solution?

faded_esx.zip (131.0 KB)

there ya go it fades the entire money ui haven’t figured out a command one yet unfortunately :frowning: but am working on it!

1 Like

could i have an updated one?

use OCRP’s Release of the HUD script: hud.zip (6.7 KB)

Commands

/carhud - hides the carhud (if installed)
/advplane - Not entirely sure it might toggle the plane hud in the car hud not sure.
/voice - Sets your voice proximity
/money - toggles the ESX Money hud (also on the bright side it will hide the esx_customUI too!)
/clear - clears the area in a radius like in simple trainer or vMenu!

@KrizFrost

this was a good idea mind if i give it a go ?

Has anyone seen one? I’m trying to make one but I can not do it, I just want to make the player type /money and the money appears for a short time and then disappear :frowning:

I hope this helps ya: [Release] ESX_ShowCommands (/showjob,cash,bank,dirty and society)

ESX = nil

local PlayerData = {}

Citizen.CreateThread(function()

while ESX == nil do

    TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end)

    Citizen.Wait(0)

end

end)

RegisterCommand(“cash”, function(source, args, rawCommand)

if disableui then

    Citizen.Wait(2000)

    TriggerEvent('es:setMoneyDisplay', 0.0)

    ESX.UI.HUD.SetDisplay(0.0)

else

    TriggerEvent('es:setMoneyDisplay', 1.0)

    ESX.UI.HUD.SetDisplay(1.0)

    Citizen.Wait(2000)

    TriggerEvent('es:setMoneyDisplay', 0.0)

    ESX.UI.HUD.SetDisplay(0.0)

end

end)

RegisterCommand(“bank”, function(source, args, rawCommand)

if disableui then

  Citizen.Wait(2000)

    TriggerEvent('es:setMoneyDisplay', 0.0)

    ESX.UI.HUD.SetDisplay(0.0)

else

    TriggerEvent('es:setMoneyDisplay', 1.0)

    ESX.UI.HUD.SetDisplay(1.0)

    Citizen.Wait(2000)

    TriggerEvent('es:setMoneyDisplay', 0.0)

    ESX.UI.HUD.SetDisplay(0.0)

end

end)

here i have write this code to show cash and bank but i can’t make it to show bank i can only showing cash i don’t know the id to triggerevent from bank account can you have a look

You ever find one?

1 Like