• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

GameMaker (SOLVED)How do I keep the text stay in one paragraph?

B

BlueBird02

Guest
I've added an NPC interaction where the black cat to the talks the blue dog.

The blue dog said:
"What, red eyes? Can't you see I'm busy? Stop Staring at me! What? you saw my show when you were a kid?"

I did exactly that, but the results became this.

111.PNG www.PNG
How do I keep the dialogue stay in one box rather than separated?
 
B

BlueBird02

Guest
Here's the code:

____________________________

obj_dialoguebox code:

///Draw given text
draw_self();
draw_text_ext(bbox_left + 189, bbox_top + 40, myMessage[messageIndex], 16, maxLength);
 
Top