Main Menu
  • Welcome to The RPG Maker Resource Kit.

[VXA] Is there a quick way to force a text window to close?

Started by Zylos, July 23, 2013, 04:33:47 AM

0 Members and 1 Guest are viewing this topic.

Zylos

The scenario is this: you are on a timer, and if the timer reaches zero, it explodes and goes the screen to go white regardless of whatever you were doing. However, if you happen to have a text window or an equivalent open on the screen before the explosion, it will remain on the screen even after the timer goes off and will not clear until you specifically do so yourself.

How can one forcibly and immediately close a text window from a screen via another event?




&&&&&&&&&&&&&

Only thing I can think of is

\^

"Do not wait for input after displaying text." -RMVXA tool tip
&&&&&&&&&&&&&&&&

Zylos

That's an in-text code that you have to write in ahead of time into your text message, meaning that it'd only work if you specifically have a text message that gets cut off like an NPC being interrupted. What I need is simply for one event to shut down another even if it's in mid-text.




D&P3

Something like this I guess, not tested

class Game_Interpreter
  def exit_window()
    $game_message.clear()
    event_id = $game_map.interpreter.event_id
    $game_map.events[event_id].refresh()
    @list = []
  end
end
All of my scripts are totally free to use for commercial use. You don't need to ask me for permission. I'm too lazy to update every single script post I ever made with this addendum. So ignore whatever "rule" I posted there. :)

All scripts can be found at: https://pastebin.com/u/diamondandplatinum3