SetPedAnimation

From Multi Theft Auto: Wiki
Revision as of 12:56, 11 June 2008 by Arc (talk | contribs)
Jump to navigation Jump to search

Sets the current animation of a player or ped.

Syntax

bool setPedAnimation ( ped thePed, string block, string anim, [ bool loop = false, bool updatePosition = false ] )

Or, to stop the current animation:

bool setPedAnimation ( ped thePed, bool false )

Required Arguments

  • thePed: the player or ped you want to apply an animation to.
  • block: the animation block's name.
  • anim: the name of the animation within the block.

Optional Arguments

  • loop: indicates whether or not the animation will loop.
  • updatePosition: will change the actual coordinates of the ped according to the animation. Use this for e.g. walking animations.

Returns

Returns true if succesful, false otherwise.

Example

See Also