TEXT SKIP

RPG Maker VX Ace

This script allows you to skip the text in the message window while a key is pressed.

  • TDS
  • 06/14/2013 11:45 PM
  • 11799 views
Version:1.0

Introduction
This script allows you to skip messages by pressing the cancel key (B) X.

Features
- Skip text boxes.

Instructions
Instructions are on the script.

Notes
This script is meant to be used while testing to speed up text.
This script may not be compatible with custom message systems, however, I will
try to make it compatible with any that are reported as long as the script or a demo is provided.

Restrictions
Only for use in non-commercial games.

Posts

Pages: 1
Is it possible to tie this to a switch or item or script call so that it can be toggled on and off?
Yep. Just put this script below it in an empty script or below the actual script.

#==============================================================================
# ** Window_Message
#------------------------------------------------------------------------------
#  This message window is used to display text.
#==============================================================================

class Window_Message < Window_Base
  #--------------------------------------------------------------------------
  # * Determine if all text should be skipped
  #--------------------------------------------------------------------------
  def skip_all_text? ; $game_switches[1] == true and Input.press?(:B) end
end


Change this line to set the ID of the switch that will trigger the effect.

def skip_all_text? ; $game_switches[ID] == true and Input.press?(:B) end
Pages: 1