Can somebody help me with some lua code that will allow me to make a multi text line dialog message?
Thanks in advance
Professional Software Development Tools
Can somebody help me with some lua code that will allow me to make a multi text line dialog message?
Thanks in advance
Use \r\n to drop to a new line
Code:Dialog.Message("Your Title", "This\r\nwill\r\nshow\r\nhow\r\nto\r\nadd\r\ncarriage return\r\nlinebreaks.")
Here's an easier on the eyes approach?
Code:Dialog.Message("Your Title", [[ My friend of a long time once said, "You don't have just one shot at it, so make the second one better than the first one!" ]])
Intrigued
thnaks guys, I'll try both!