mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 09:48:52 +00:00
14 lines
174 B
Lua
14 lines
174 B
Lua
local self = ESX.Modules['society']
|
|
|
|
self.Init()
|
|
|
|
Citizen.CreateThread(function()
|
|
|
|
while ESX.PlayerData.job == nil do
|
|
Citizen.Wait(10)
|
|
end
|
|
|
|
self.RefreshBossHUD()
|
|
|
|
end)
|