SetPlayerAnimation

From Onset Developer Wiki
Revision as of 16:00, 19 November 2019 by 28days (talk | contribs)
SetPlayerAnimation

Type: Function
Context: Server
Introduced: v1.0

Description

Set the player's animation.

Syntax

SetPlayerAnimation(player, animation)

Parameters

  • player
    The player identifier.
  • animation
    Animation name, see AnimationList

Return Value

  • This function returns nothing.

Example

AddCommand("flex", function(playerid)
    SetPlayerAnimation(playerid, "FLEXX")
    AddPlayerChat(playerid, "Flex like Talos or 28days would.")
end)

See also