SheatheWeapon - Actor
Revision as of 22:17, 31 May 2013 by imported>Bot Owned (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Actor Script''' Forces this actor to sheathe his weapon. == Syntax == <source lang="p...")
SKSE Member of: Actor Script
Forces this actor to sheathe his weapon.
Syntax
Function SheatheWeapon() native
Parameters
None.
Return Value
None.
Examples
Actor PlayerRef = Game.GetPlayer()
If PlayerRef.IsWeaponDrawn() ;If Player has a weapon drawn,
Game.GetPlayer().SheatheWeapon() ;Sheathe the drawn weapon.
EndIf