Duty status toggled
Event
AddEventHandler("jobs_creator:toggleDuty", function(isOnDuty)
end)Parameters
Name
Data Type
Description
Example
AddEventHandler("jobs_creator:toggleDuty", function(isOnDuty)
if(isOnDuty) then
ESX.ShowNotification("You are now on duty")
else
ESX.ShowNotification("You are now off duty")
end
end)Last updated