Native referenceRedM

START_SCRIPT_FIRE

0x6B83617E04503888 FIRE
FUNCTION SIGNATURE
FireId START_SCRIPT_FIRE(float X, float Y, float Z, int maxChildren, BOOL isGasFire);
Property Value
Native Name START_SCRIPT_FIRE
Hash 0x6B83617E04503888
Return Type FireId
Build 1207
Parameters X (float), Y (float), Z (float), maxChildren (int), isGasFire (BOOL)

Description: ``` Starts a fire:
xyz: Location of fire
maxChildren: The max amount of times a fire can spread to other objects. Must be 25 or less, or the function will do nothing.
isGasFire: Whether or not the fire is powered by gasoline.


### Usage

**Lua (Direct):**
```lua
local result = StartScriptFire(X, Y, Z, maxChildren, isGasFire)

Lua (Hash):

local result = Citizen.InvokeNative(0x6B83617E04503888, X, Y, Z, maxChildren, isGasFire)
Back to FIRE