IsSneakingControlsEnabled - Game
Revision as of 19:41, 2 August 2011 by imported>Jlundin (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Game Script Checks to see if sneaking controls are currently enabled or not. == Syntax == <source lang="papyrus…')
Member of: Game Script
Checks to see if sneaking controls are currently enabled or not.
SyntaxEdit
bool Function IsSneakingControlsEnabled() native global
ParametersEdit
None.
Return ValueEdit
If the sneaking controls are currently enabled or not.
ExamplesEdit
; Can the player sneak around?
if Game.IsSneakingControlsEnabled()
Debug.Trace("Player can sneak around!")
endIf