EnableDetection - Debug

Revision as of 14:21, 23 January 2014 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus Category:Papyrus Debug Only Functions '''Member of:''' Debug Script Enables/disables AI detection in the game. == Syntax == ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Debug Script

Enables/disables AI detection in the game.

SyntaxEdit

Function EnableDetection(bool abEnable = true) native global debugOnly

ParametersEdit

  • abEnable: If true, enables AI detection, if false, disables it.
    • Default: True

Return ValueEdit

None

ExamplesEdit

; Enables AI detection
Debug.EnableDetection()


; Disables AI detection
Debug.EnableDetection(false)

See AlsoEdit