IsJournalControlsEnabled - Game
Revision as of 19:39, 2 August 2011 by imported>Jlundin (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Game Script Checks to see if journal menu controls are currently enabled or not. == Syntax == <source lang="pap…')
Member of: Game Script
Checks to see if journal menu controls are currently enabled or not.
Syntax[edit | edit source]
bool Function IsJournalControlsEnabled() native global
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
If the journal menu controls are currently enabled or not.
Examples[edit | edit source]
; Can the player use the journal menu?
if Game.IsJournalControlsEnabled()
Debug.Trace("Player can use the journal!")
endIf