Jump to content

Essentials Text Skip Tutorial


Recommended Posts

  • Administrators

(casually copypasting, don't mind me..)

 

This script adds the ability for players to quickly skip through messages by holding the B button during them. It works by exploiting a glitch that jumps through messages when the text speed is set to a very high number. So... thank Bethesda for the inspiration or something. It's a feature now.

 

Open your script editor and press Ctrl+Shift+F. Paste the following line:

 

if (Input.trigger?(Input::C) || Input.trigger?(Input::B))


It should display a search box that returns a sole result in "Messages". In vanilla 17.2, it appears to be line 1258.
Jump to the searched line by double-clicking it.

 

Directly above that line, paste the following code:

 

    if Input.press?(Input::B)
	      msgwindow.textspeed=-999
	      msgwindow.update
	      if msgwindow.busy?
	        pbPlayDecisionSE() if msgwindow.pausing?
	        msgwindow.resume
	      else
	        break if signWaitCount==0
	      end
	    end

 

When done, it should look like this:

 

fP4BJa7.png

 

...and that's all that's necessary!

 

You can change the key required to script by changing the Input::B part to another letter or key input, but "B" corresponds to the X key. Because RMXP is weird like that.

 

If used, please credit:

  • Amethyst
  • Kurotsune
     
  • Like 5
  • Thanks 2
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...