SetPedAnalogControlState
From Multi Theft Auto: Wiki
Sets an analog state of a specified ped's control, as if they pressed or released it.
This function only works on peds, to change the analog control state for a player, please use setAnalogControlState.
Syntax
bool setPedAnalogControlState ( ped thePed, string control, float state )
Required Arguments
- thePed: The ped you wish to set the control state of.
- control: The control that you want to set the state of. See control names for a list of possible controls.
- state: A float between 0 and 1 indicating the amount the control is pressed.
Returns
Returns true if the control state was successfully set, false otherwise.
Example
This example uses setPedAnalogControlState to very slowly accelerate a ped-controlled NRG-500.
function createAnalogControlTest( ) local playerPosition = Vector3( getElementPosition( localPlayer ) ) local theVehicle = createVehicle( 522, playerPosition ) local thePed = createPed( 0, playerPosition ) warpPedIntoVehicle( thePed, theVehicle ) setPedAnalogControlState( thePed, "accelerate", 0.05 ) setPedAnalogControlState( thePed, "vehicle_left", 1 ) end addCommandHandler( "analogcontroltest", createAnalogControlTest )
Requirements
Minimum supported server | n/a |
---|---|
Minimum supported client | 1.3.0-9.04185 |
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.3.0-9.04185" />
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