GetPedAnimationData
From Multi Theft Auto: Wiki
Function has been disabled. | |
This function is used to return the animation data of a player or ped that was set using setPedAnimation.
Syntax
string getPedAnimationData ( ped thePed )
Required Arguments
- thePed: the player or ped you want to get the animation data of.
Returns
Returns 2 strings containing information about animations. These keys are present below :
- name: string - name of the animation
- block_name: string - name of animation block
Example
This example adds a command to get the local player animation data.
function animData() local data = getPedAnimationData(localPlayer) if data then outputChatBox(data) else outputChatBox("Sorry, but you're not doing thing!") end end addCommandHandler("getAnimData",animData)
Requirements
Minimum supported server | n/a |
---|---|
Minimum supported client | 1.0.1 |
Note: Using this function requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.0.1" />
See Also
- getPedAmmoInClip
- getPedAnalogControlState
- getPedAnimation
- getPedArmor
- getPedBonePosition
- getPedCameraRotation
- getPedClothes
- getPedContactElement
- getPedControlState
- getPedFightingStyle
- getPedMoveState
- getPedOccupiedVehicle
- getPedOccupiedVehicleSeat
- getPedOxygenLevel
- getPedSimplestTask
- getPedStat
- getPedTarget
- getPedTargetCollision
- getPedTargetEnd
- getPedTargetStart
- getPedTask
- getPedTotalAmmo
- getPedVoice
- getPedWalkingStyle
- getPedWeapon
- getPedWeaponMuzzlePosition
- getPedWeaponSlot
- getValidPedModels
- givePedWeapon
- isPedChoking
- isPedDead
- isPedDoingGangDriveby
- isPedDoingTask
- isPedDucked
- isPedHeadless
- isPedInVehicle
- isPedOnFire
- isPedOnGround
- isPedWearingJetpack
- killPed
- removePedClothes
- removePedFromVehicle
- setAnalogControlState
- setPedAimTarget
- setPedAnalogControlState
- setPedAnimation
- setPedAnimationProgress
FROM VERSION 1.5.7 r19626 ONWARDS
FROM VERSION 1.5.7 r19626 ONWARDS
- setPedFootBloodEnabled
- setPedHeadless
- setPedLookAt
- setPedOnFire
- setPedOxygenLevel
- setPedStat
- setPedTargetingMarkerEnabled
- setPedVoice
- setPedWalkingStyle
- setPedWeaponSlot
- warpPedIntoVehicle