- Joined
- Sep 26, 2015
- Messages
- 338
- Reaction score
- 94
- First Language
- English
- Primarily Uses
- N/A
I was trying to figure out a way to display the horse race scores for my game without scrolling text or multiple text boxes, and figured out the answer from here: https://forums.rpgmakerweb.com/index.php?threads/big-text-display.86569/
In Game Window js, edit the Window Message VisibleRows value to any number. I edited mine to 14.
Then, in a script call (not in conditional branch), add the following. It does not need to equal the value in Game Window js, but only the number of lines you want displayed in the present text box:
It should look like this:
You should get this - a bigger text box and more lines:
In Game Window js, edit the Window Message VisibleRows value to any number. I edited mine to 14.
Then, in a script call (not in conditional branch), add the following. It does not need to equal the value in Game Window js, but only the number of lines you want displayed in the present text box:
text = "line1\nline2\nline3\nline4\nline5\nline6\nline7\nline8.
$gameMessage.add(text)
$gameMessage.add(text)
It should look like this:
You should get this - a bigger text box and more lines:
Last edited: