IsPedOnFire: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server client function}} | {{Server client function}} | ||
This function checks if the specified [[ped]] is on fire or not. | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua">bool isPedOnFire ( ped thePed )</syntaxhighlight> | <syntaxhighlight lang="lua">bool isPedOnFire ( ped thePed )</syntaxhighlight> | ||
Line 7: | Line 8: | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''thePed''': | *'''thePed''': The [[ped]] to check. | ||
===Returns=== | ===Returns=== | ||
Line 14: | Line 15: | ||
==مثال== | ==مثال== | ||
<section class="server" name="Server" show="true"> | <section class="server" name="Server" show="true"> | ||
This example checks if a random player is on fire, and if so gives him a fire extinguisher. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local randomPlayer = getRandomPlayer() | local randomPlayer = getRandomPlayer() | ||
if isPedOnFire ( randomPlayer ) then | if isPedOnFire ( randomPlayer ) then | ||
giveWeapon ( randomPlayer, 42, 100, true ) | giveWeapon ( randomPlayer, 42, 100, true ) | ||
end | end | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> |
Revision as of 21:04, 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.
مثال
Click to collapse [-]
ServerThis 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
- addPedClothes
- getPedClothes
- removePedClothes
- createPed
- getPedAmmoInClip
- getPedArmor
- getPedFightingStyle
- getPedOccupiedVehicle
- getPedOccupiedVehicleSeat
- getPedStat
- getPedTarget
- getPedTotalAmmo
- getPedWalkingStyle
- getPedWeapon
- getPedWeaponSlot
- getPedContactElement
- getValidPedModels
- isPedChoking
- isPedDead
- isPedDoingGangDriveby
- isPedDucked
- isPedHeadless
- isPedInVehicle
- isPedOnFire
- isPedOnGround
- isPedWearingJetpack
- killPed
- removePedFromVehicle
- setPedAnimation
- setPedAnimationProgress
- setPedAnimationSpeed
- setPedArmor
- setPedDoingGangDriveby
- setPedFightingStyle
- setPedHeadless
- setPedOnFire
- setPedStat
- setPedWalkingStyle
- setPedWeaponSlot
- warpPedIntoVehicle