🎛️Custom Core Integration
In this area, you will see how to make integration for your custom framework.
All codes in this document are in wais-hudv6/bridge/editable/client.lua file.
🎯 Showing Hud - Player Loaded
You must trigger this event for hud to appear when your character is loaded or selected in your framework.
TriggerEvent('wais:hudv6:client:custom:playerLoaded')
Client event It should be triggered when the player or character is loaded.
🪄 Hide hud - Player Unload
Run this event if the player abandons their character or wants to choose a new character.
TriggerEvent('wais:hudv6:client:custom:playerUnloaded')
Client event It should be triggered when the player or character is unloaded.
🔖 Show Job - Update Job
TriggerEvent('wais:hudv6:client:custom:setPlayerJob', job)
Client event Job data must be sent.
🥷🏼 Show Gang - Update Gang
TriggerEvent('wais:hudv6:client:custom:setPlayerGang', gang)
Client event Gang data must be sent.
💸 Show Money - Update Money ( Cash )
TriggerEvent('wais:hudv6:client:custom:setPlayerMoney', 1000)
Client event money must be sent.
🏦 Show Bank - Update Bank
TriggerEvent('wais:hudv6:client:custom:setPlayerBank', 1000)
If you need more, you should create a support request as ‘I need Custom Framework Support’.
Last updated