CreateFire: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Client function}} Creates a patch of fire that will spread a bit and die out after a while. ==Syntax== <syntaxhighlight lang="lua">bool createFire ( float x, float y, float z [, float size = ...)
 
mNo edit summary
(12 intermediate revisions by 5 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
[[Image:Fire.png|thumb|200px|Fire with default size (1.8)]]


Creates a patch of fire that will spread a bit and die out after a while.
Creates a patch of fire that will spread a bit and die out after a while. Because it's a client side only function, other players won't see it, so custom events or custom objects will be needed to make a fire visible to some players.


==Syntax==
==Syntax==
Line 8: Line 9:


===Required Arguments===
===Required Arguments===
*'''x, y, z:''' coordinates of the fire.
*'''x, y, z:''' the coordinates when the initial patch of fire will be created.


===Optional Arguments===
===Optional Arguments===
*'''size:''' the size of the initial fire.
*'''size:''' a float value indicating the size of the initial patch of fire. It will also make the fire to stay alive more or less time.


===Returns===
===Returns===
Returns ''true'' if successful, ''false'' otherwise. There can be a maximum of 60 active fires.
Returns ''true'' if successful, ''false'' if bad arguments were passed or the limit of active fires was reached. There can be a maximum of 60 active fires.
 
== Example ==
 
This example adds a /fire command, which creates a patch of fire in the position of the player that types it.
 
<syntaxhighlight lang="lua">
local function burn(commandName, theSize)
  if tonumber(theSize) then
        local x, y, z = getElementPosition(getLocalPlayer())
        createFire(x, y, z, tonumber(theSize))
        outputChatBox("Burn, buuuuurn >:]")
  else
        outputChatBox("Syntax: /fire <size>")
  end
end
addCommandHandler("fire", burn)
</syntaxhighlight>


==See Also==
==See Also==
{{Client fire functions}}
{{Client fire functions}}

Revision as of 13:28, 26 August 2016

Fire with default size (1.8)

Creates a patch of fire that will spread a bit and die out after a while. Because it's a client side only function, other players won't see it, so custom events or custom objects will be needed to make a fire visible to some players.

Syntax

bool createFire ( float x, float y, float z [, float size = 1.8 ] )

Required Arguments

  • x, y, z: the coordinates when the initial patch of fire will be created.

Optional Arguments

  • size: a float value indicating the size of the initial patch of fire. It will also make the fire to stay alive more or less time.

Returns

Returns true if successful, false if bad arguments were passed or the limit of active fires was reached. There can be a maximum of 60 active fires.

Example

This example adds a /fire command, which creates a patch of fire in the position of the player that types it.

local function burn(commandName, theSize)
   if tonumber(theSize) then
        local x, y, z = getElementPosition(getLocalPlayer())
        createFire(x, y, z, tonumber(theSize))
        outputChatBox("Burn, buuuuurn >:]")
   else
        outputChatBox("Syntax: /fire <size>")
   end
end
addCommandHandler("fire", burn)

See Also