SetDisablePetrolDecalsIgnitingThisFrame
DocsSetDisablePetrolDecalsIgnitingThisFrame()Description
Prevents gas / petrol decals (aka gas / petrol trails and puddles) to be ignited on fire during the frame in which the native is called.
Note: This native needs to be called every frame to prevent ignition.
Returns
voidThis native does not return a value.
Examples
Official
Citizen.CreateThread(function()
while true do
SetDisablePetrolDecalsIgnitingThisFrame()
Citizen.Wait(0)
end
end)