Hi, I was trying to modify a default script lately but then I noticed that the window doesn't work as expected.
Whenever I try to show a message on... let's say it's some help window during a battle... one after another, it makes all the messages appear at once (it looks terrible) or it only displays the last message and that's all I can read, even if it was supposed to show up to 4 or 10 messages in a row...
I tried using some @wait_count, for, while, loop to achieve this... At the end I couldn't make it work properly.
but this code didn't work...
Whenever I try to show a message on... let's say it's some help window during a battle... one after another, it makes all the messages appear at once (it looks terrible) or it only displays the last message and that's all I can read, even if it was supposed to show up to 4 or 10 messages in a row...
I tried using some @wait_count, for, while, loop to achieve this... At the end I couldn't make it work properly.
Code:
messages = ['I won't give up', 'Yes, you will', 'No, I won't']
for a in messages
@help_window.set_text(a, 1)
@help_window.update while @wait_count == 0
end
but this code didn't work...