I am writing a GML script and wanted to know how to make a message appear on the next line:
ex.
show_message("Hello" + *something* + "World")
outputs:
Hello
World
For GameMaker: Studio 2, always use \n
as new line.
show_debug_message("First Line\nSecond Line");
For earlier releases, always use #
as new line.
show_message("First Line#Second Line");