SetPlayerAnimation: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
Line 1: Line 1:
{{Info|Function|Server|1.0}}
{{Info|Function|Server|1.0}}


{{FuncDescription|__EDIT_ME__}}
{{FuncDescription|Set the player's animation.}}


{{FuncSyntax|SetPlayerAnimation(player, animation)}}
{{FuncSyntax|SetPlayerAnimation(player, animation)}}


{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|player|__EDIT_ME__}}
{{FuncParam|player|The player identifier.}}
{{FuncParam|animation|Animation name, see [[AnimationList]]}}
{{FuncParam|animation|Animation name, see [[AnimationList]]}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|This function returns nothing.}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua>
AddCommand("flex", function(playerid)
    SetPlayerAnimation(playerid, "FLEXX")
    AddPlayerChat(playerid, "Flex like Talos or 28days would.")
end)
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
* [[GetPlayerAnimation]]

Revision as of 16:00, 19 November 2019

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