Difference between revisions of "Con SQV"

478 bytes added ,  10:31, 20 July 2014
expanded
imported>Odessa
(Created page with "{{Function |origin = NVSE |summary = Added by NVSE v4. Shows the specified quest's variables in the console window. Requires Console Echo to be toggled on...")
 
imported>Odessa
(expanded)
Line 1: Line 1:
{{Function
{{Function
  |origin = NVSE
  |origin = NVSE
  |summary = Added by NVSE v4. Shows the specified quest's variables in the console window. Requires [[SetConsoleEcho|Console Echo]] to be toggled on.
  |summary = Added by NVSE v4. Shows the specified quest's variables in the console window. Requires [[SetConsoleEcho|Console Echo]] to be toggled on. This function is useful for creating debug dumps with [[Con_SCOF]].
  |name = Con_SQV
  |name = Con_SQV
  |returnType = None
  |returnType = None
Line 7: Line 7:
   |Name = ToShowVarsOf
   |Name = ToShowVarsOf
   |Type = Quest}}
   |Type = Quest}}
|example = Con_SQV HolyGrailQuest
; or
if GetConsoleEcho
    Con_SQV HolyGrailQuest
endif
}}
}}
==Example==
<pre>
SetConsoleEcho 1
Con_SQV HolyGrailQuest
</pre>
Will output to the console something like:
<pre>
->iNumFollowers = 7
->HasFoundGrail = 1
->HasSiegedCastle = 0
->fGameDayFound= 21.0524
->aSomeArray = 188.0000
->SomeStringVar = 165
--- Quest state -----------------------------
Running?      Yes
Current stage: 0
Priority:      50
</pre>
==Notes==
*String and array variable contents are not printed in a human readable form.
==See Also==
==See Also==
*[[ShowQuestVars]] - Console version
*[[Con_SCOF]]
*[[GetConsoleEcho]]
*[[GetConsoleEcho]]
*[[SetConsoleEcho]]
*[[SetConsoleEcho]]
*[[Ar_Dump]]
[[Category:Functions_(NVSE)]]
[[Category:Functions_(NVSE)]]
[[Category:Debugging]]
[[Category:Debugging]]
Anonymous user