[dismiss]
This wiki is a copy of the original Skyrim CK wiki created and maintained by the UESP.net. See CreationKit:Copy Notice for more info.
IsFavoritesControlsEnabled - Game
Jump to navigation
Jump to search
Member of: Game Script
Checks to see if favorites controls are currently enabled or not.
Syntax[edit | edit source]
bool Function IsFavoritesControlsEnabled() Native Global
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
If the favorites controls are currently enabled or not.
Examples[edit | edit source]
; Can the player fight?
If Game.IsFavoritesControlsEnabled()
Debug.Trace("Player can use quickkeys!")
EndIf