Meteor Scripting Functions
Output
void print(string text)
print text to the screen and console.

Example
print("Hello World!");

Comments
Text is not saved in the log file. Use logPrint to print text and output it to the log file.

See also
log logPrint gameMessage

void log(string text)
Output text to the log only.

Example
log("Hello Log!");

See also
print logPrint gameMessage

void logPrint(string text)
Print text to the screen and console. Also output text to the log file.

Example
logPrint("Hello Log World!");

See also
print log gameMessage


Index