IsFavoritesControlsEnabled - Game
Revision as of 14:02, 18 October 2013 by imported>HEECFYAHOOCA (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Game Script Checks to see if favorites controls are currently enabled or not. == Syntax == <source lang="papyru...")
Member of: Game Script
Checks to see if favorites controls are currently enabled or not.
Syntax
bool Function IsFavoritesControlsEnabled() native global
Parameters
None.
Return Value
If the favorites controls are currently enabled or not.
Examples
; Can the player fight?
if Game.IsFavoritesControlsEnabled()
Debug.Trace("Player can use quickkeys!")
endIf