Difference between revisions of "Print"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Odessa
m (see also printdebug)
imported>Odessa
 
Line 17: Line 17:
==See Also==
==See Also==
*[[PrintDebug]] (only prints if mod has debug mode enabled)
*[[PrintDebug]] (only prints if mod has debug mode enabled)
*[[PrintToConsole]] (PrintC)
*[[PrintF]] (Outputs to a file)
*[[PrintToConsole]] (PrintC, the old version which uses string formatting)
*[[ToString|ToString($)]]
*[[ToString|ToString($)]]
*[[String Variable]]
*[[String Variable]]

Latest revision as of 17:53, 9 March 2015

< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Added by NVSE v4. Prints a string expression to the console. This is mainly a convenience function to eliminate the need for temporary string variables when printing complex strings using PrintToConsole, as it supports string concatenation and the ToString function, also making string formatting unnecessary.

Like Let and if eval, NVSE expressions and nested function calls are supported without compiler override.

Syntax

[help]
(none) Print string:expression

Example

Print "My mod version is " + $MyMainQuest.Version + " and NVSE version is " + $(GetNVSEVersion)

Console --> My mod version is 1.04 and NVSE version is 4

See Also