$$Priced$$ Member 0 Dec 14, 2006 #1 I need to know how to display a message(displayed as if you used the message command) through a script. Thanks.
I need to know how to display a message(displayed as if you used the message command) through a script. Thanks.
Yeyinde Sponsor 1,122 Dec 14, 2006 #3 It's more than just that, ccoa. Code: $game_temp.message_text = "Hi, I'm Aluxes! Look at me talk in many lines! It's soooo cool, eh? Good bye!" @message_waiting = true $game_temp.message_proc = Proc.new { @message_waiting = false } Upvote 0 Downvote
It's more than just that, ccoa. Code: $game_temp.message_text = "Hi, I'm Aluxes! Look at me talk in many lines! It's soooo cool, eh? Good bye!" @message_waiting = true $game_temp.message_proc = Proc.new { @message_waiting = false }
Anonymous Guest Dec 14, 2006 #4 Well, first, Yeyinde, that code wouldn't work, because of @message_waiting, but second, yes, that is all you need. Try it out if you don't believe me. Upvote 0 Downvote
Well, first, Yeyinde, that code wouldn't work, because of @message_waiting, but second, yes, that is all you need. Try it out if you don't believe me.