SheatheWeapon - Actor

From the CreationKit Wiki
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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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


See Also