SetPlayerAnimation: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
Line 7: Line 7:
{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|player|The player identifier.}}
{{FuncParam|player|The player identifier.}}
{{FuncParam|animation|Animation name, see [[AnimationList]]}}
{{FuncParam|animation|Animation name, see [[AnimationList]]. Since v1.2.2 this can also be any integer that you used in [[ReplaceAnimationLibrarySequence]].}}


{{FuncReturnValue|This function returns nothing.}}
{{FuncReturnValue|This function returns nothing.}}
Line 20: Line 20:


{{RelatedFunctions}}
{{RelatedFunctions}}
* [[GetPlayerAnimation]]
{{ServerPlayerFunctions}}

Latest revision as of 20:25, 1 September 2020

SetPlayerAnimation

Type: Function
Context: Server
Introduced: v1.0

Description

Set the player's animation.

Syntax

SetPlayerAnimation(player, animation)

Parameters

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