Client Events
Make sure to use the events correctly and pass the arguments properly to ensure the resource works as intended
Busy State Changed
When you toggle your busy status, in case you need it for other scripts.
AddEventHandler('ikerdrgz-radio:client:toggleBusyStateClient', function(state)
print(state)
end)
Player Job Updated
Returns job name if has allowed job or false if not
RegisterNetEvent('ikerdrgz-radio:pma:playerJobUpdated', function(state)
print(state)
end)
Channel Name Changed
This is for when the current channel name of the unit UI changes.
AddEventHandler('ikerdrgz-radio:client:changeChannelName', function(name)
print(name)
end)
Combination Key Active
When you press/stop pressing the combination key. It can be useful for example for the inventory, not to use the items in the hotbar while changing frequency keymapping
AddEventHandler('ikerdrgz-radio:client:combinationKeyActive', function(state)
print(state)
end)
Last updated