PrintToConsole
Jump to navigation
Jump to search
< [[::Category:Functions|Category:Functions]]
Link to TES4 Construction Set Wiki: PrintToConsole.
A function added by the Fallout Script Extender.
Description
Prints a string to console. Optionally with up to 20 format specifiers.
Syntax
PrintToConsole Message:string Formatting
Or:
PrintC Message:string Formatting
Example
PrintC "This message will appear in the game console"
With formatting:
int iVal set iVal to 42 PrintC "The value of iVal is: %g" iVal
Notes
- Requires use of ToString($) to print string variables.
See Also
- String Formatting
- DebugPrint
- Print (NVSE 4 version)
- MessageEx
- ToString