Scripts/resources/[qb]/[qb_extras]/qb-perico/scripts/static_emitters.lua

13 lines
468 B
Lua
Raw Permalink Normal View History

2024-12-29 20:07:10 +00:00
Citizen.CreateThread(function()
while true do
Wait(0)
if NetworkIsSessionStarted() then
SetStaticEmitterEnabled('SE_DLC_AW_ARENA_CONSTRUCTION_01', false)
SetStaticEmitterEnabled('SE_DLC_AW_ARENA_CROWD_BACKGROUND_MAIN', false)
SetStaticEmitterEnabled('SE_DLC_AW_CROWD_EXTERIOR_LOBBY', false)
SetStaticEmitterEnabled('SE_DLC_AW_CROWD_INTERIOR_LOBBY', false)
return
end
end
end)