IsPedOnFire: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Added OOP pair)
No edit summary
Line 23: Line 23:
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
 
[[ar:isPedOnFire]]
==See Also==
==See Also==
{{Ped functions}}
{{Ped functions}}

Revision as of 20:52, 18 May 2020

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
Counterpart: setPedOnFire


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