IsPedDead
From Multi Theft Auto: Wiki
This function checks if the specified ped is dead or not.
Syntax
bool isPedDead ( ped thePed )
OOP Syntax Help! I don't understand this!
- Method: ped:isDead(...)
- Variable: .dead
Required Arguments
- thePed: the ped you want to check up on.
Returns
Returns true if the ped is dead, false otherwise.
Example
Click to collapse [-]
ServerThis example allows a player to use the command 'amidead' to see if they are dead or not.
--Check if player is alive or dead and let them know in the chat box function deathCheck ( thePlayer, commandName ) if ( isPedDead ( thePlayer ) ) then outputChatBox ( "You're dead... prepare to become a zombie.", thePlayer ) else outputChatBox ( "Count your lucky stars, you're alive.", thePlayer ) end end addCommandHandler ( "amidead", deathCheck )
See Also
- addPedClothes
- createPed
- getPedAmmoInClip
- getPedArmor
- getPedClothes
- getPedContactElement
- getPedFightingStyle
- getPedGravity
- getPedOccupiedVehicle
- getPedOccupiedVehicleSeat
- getPedStat
- getPedTarget
- getPedTotalAmmo
- getPedWalkingStyle
- getPedWeapon
- getPedWeaponSlot
- getValidPedModels
- isPedChoking
- isPedDead
- isPedDoingGangDriveby
- isPedDucked
- isPedHeadless
- isPedInVehicle
- isPedOnFire
- isPedOnGround
- isPedWearingJetpack
- killPed
- reloadPedWeapon
- removePedClothes
- removePedFromVehicle
- setPedAnimation
- setPedAnimationProgress
- setPedAnimationSpeed
- setPedArmor
- setPedChoking
- setPedDoingGangDriveby
- setPedFightingStyle
- setPedGravity
- setPedHeadless
- setPedOnFire
- setPedStat
- setPedWalkingStyle
- setPedWeaponSlot