(Official) LUA Scripting Documentation
msgbox
Display a message box and wait for user input.
Spec:
msgbox(
string heading,
string body,
string a_text,
string x_text,
string y_text,
string b_text,
bool vertical)
Parameters
heading
: The message box header (title)body
: The main body text of the messagea_text
: Text for the A button promptx_text
: Text for the X button prompty_text
: Text for the Y button promptb_text
: Text for the B butto promptvertical
: true = display button prompts vertically. Omit for default = false = display horizontally
Returns
long
: The number of the selected prompt. Zero = no selection (escape). 1 = A button, 2 = X button, 3 = Y button, 4 = B button.
Incomplete
This documentation is incomplete