Nemesis666 0 Posted December 4, 2013 Hello Community. I'm trying to create a visual novel with RPG Maker VXAce but I'm missing a basic feature. For my project I want the player to be able to toggle the visibility of the Message Box by simply pressing a button. I know there are VN-engines on the web but I might need some of the other features of RPG Maker. Thank's in advance. Share this post Link to post Share on other sites
Tsukihime 1,489 Posted December 4, 2013 You're going to have to provide more information than that. Should players be able to do anything when the box is hidden? What happens if I press a key that is not the toggle button, when the message box is hidden? What if I want to skip the scene while the message box is hidden? Share this post Link to post Share on other sites
Skytric 9 Posted December 4, 2013 Hmm a script that basically could allow you to toggle the hue of the text box or something? I think you'd need a kind of text script for that. I remember XP having a script like that sometime back. I just don't recall who had made it. Share this post Link to post Share on other sites
efeberk 84 Posted December 5, 2013 It's ready but I don't know it is your request or not .) =begin =============================================================================== Message Visibility by efeberk Version: RGSS3 =============================================================================== This script will allow to player sets message window visible or unvisible with a key. Example : Press CTRL to hide message window and repress CTRL to show message window. -------------------------------------------------------------------------------- =end module EFE KEY = :CTRL end class Window_Message < Window_Base alias efeberk_window_message_update update def update efeberk_window_message_update if Input.trigger?(EFE::KEY) self.visible = !self.visible end end end Share this post Link to post Share on other sites