IsPedOnFire: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Server client function}} This function checks if the specified ped is on fire or not. ==Syntax== <syntaxhighlight lang="lua">bool isPedOnFire ( ped thePed )</syntaxhighlight> ===Required Arguments...)
 
(Added OOP syntax)
Line 5: Line 5:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">bool isPedOnFire ( ped thePed )</syntaxhighlight>
<syntaxhighlight lang="lua">bool isPedOnFire ( ped thePed )</syntaxhighlight>
{{OOP||[[ped]]:isOnFire|onFire}}


===Required Arguments===
===Required Arguments===

Revision as of 17:20, 26 November 2014

This function checks if the specified ped is on fire or not.

Syntax

bool isPedOnFire ( ped thePed )

OOP Syntax Help! I don't understand this!

Method: ped:isOnFire(...)
Variable: .onFire


Required Arguments

  • thePed: The ped to check.

Returns

Returns true if the ped is on fire, false otherwise.

Example

Click to collapse [-]
Server

This example checks if a random player is on fire, and if so gives him a fire extinguisher.

local randomPlayer = getRandomPlayer()
if isPedOnFire ( randomPlayer ) then
	giveWeapon ( randomPlayer, 42, 100, true )
end

See Also

Shared