Hello,
I am developing a framework right now, I have created the backend economy to it and was wondering if there is a way to use the default GTA V online money HUD. I’m trying to use this instead of creating a Nui HUD for the time being. Does anyone have any ideas on how I could go about this? Also, possibly using the money notifications.
Right now from my understanding
I have to use MP0_WALLET_BALANCE in ```
StatSetInt(
statName --[[ Hash ]],
value --[[ integer ]],
save --[[ boolean ]]
)
Then display the HUD using this code snippet
// Code to show both Money and Bank HUD
N_0x170f541e1cadd1de(true);
SetMultiplayerWalletCash();
SetMultiplayerBankCash();
N_0x170f541e1cadd1de(false);
// Add a delay to let the player read his money
await Delay(5000);
// Hide both Bank and Money HUD
RemoveMultiplayerWalletCash();
RemoveMultiplayerBankCash();
Now How do I use the notification that will alert players that there balances have been modified?