Difference between revisions of "MessageBoxEx"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Hemingway
(Created page with "{{Function |origin = NVSE |summary = Similar to ShowMessage but accepts a string directly rather than via a message form. Variables can be passed using String Formatti...")
 
imported>ZuTheSkunk
m
 
Line 13: Line 13:
==Example==
==Example==
<pre>
<pre>
MessageBoxEx "This message will in a box on screen, until the player clicks 'OK'"
MessageBoxEx "This message will show in a box on the screen, until the player clicks 'OK'"
</pre>
</pre>



Latest revision as of 11:26, 17 June 2017

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

A function added by the New Vegas Script Extender.

Description

Similar to ShowMessage but accepts a string directly rather than via a message form. Variables can be passed using string formatting, or string variables via ToString($). The message will be displayed in a box that prompts for user confirmation.

Syntax

[help]
(none) MessageBoxEx string:formatable

Example

MessageBoxEx "This message will show in a box on the screen, until the player clicks 'OK'"


See Also