If you are using the quest editor, then just start a new line where you want the line break to occur.
If you are editing the dialogs.dat file in a text editor, then you'd do it like this:
Advanced users could write their own custom dialog box script that does automatically wrap text by detecting the line length and inserting line breaks appropriately. The one included with Solarus, however, requires adding manual line breaks.
If you are editing the dialogs.dat file in a text editor, then you'd do it like this:
Code (lua) Select
dialog{
id = "my_dialog",
text = [[
You're probably wondering what's
going to happen.
]]}
Advanced users could write their own custom dialog box script that does automatically wrap text by detecting the line length and inserting line breaks appropriately. The one included with Solarus, however, requires adding manual line breaks.