Help - Search - Members - Calendar
Full Version: Stop Running
RPG RPG Revolution Forums > Game Engines > RPG Maker VX Discussion
Rastanatsta
It's odd that I couldn't find a post about this, surely I'm not the only person who is going to ask this:

How do you disable the run feature?

I made a scene where you run from a boulder, but when you hold the "shift" button you go at super speed and kind of lap the boulder. :L
Night5h4d3
well, it can be a hassle, because you have to do this for every map you want disabled.


if you want it permanently disabled unless that' box is checked (doing a vice-versa)
open your script editor, find game_map, and at about line 205, you should see this:
CODE
  #--------------------------------------------------------------------------
  # * Get Whether Dash is Disabled
  #--------------------------------------------------------------------------
  def disable_dash?
    return @map.disable_dashing
  end

change it to:
CODE

#--------------------------------------------------------------------------
  # * Get Whether Dash is Disabled
  #--------------------------------------------------------------------------
  def disable_dash?
    return !@map.disable_dashing
  end

but then that can get confusing, because your check-boxing to ENABLE rather than disable.
Rastanatsta
Thank you. smile.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.