RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

Running/Supernatural Dashing Script

Started by The Masked Loser, April 15, 2007, 03:29:30 PM

0 Members and 1 Guest are viewing this topic.

The Masked Loser

Post this above Main
I deserve no credit for this, I just made it usable outside of test play, the original script is here http://www.gamebaker.com/rmxp/scripts/map-rush.htm#
Note: You will go through anything during test play if you hold the Ctrl key
[spoiler]
class Game_Character
  alias sandgolem_maprush_char_updmove update_move
  def update_move
    if self.is_a?(Game_Player) && Input.press?(Input::CTRL)
      if Input.press?(Input::ALT)
        @move_speed += 6
        @opacity = 0
        sandgolem_maprush_char_updmove
        @move_speed -= 6
      else
    end
        @move_speed += 0.5
        @opacity = 255
        sandgolem_maprush_char_updmove
        @move_speed -= 0.5
      end
    else
      sandgolem_maprush_char_updmove
        @opacity = 255
    end
  end


[/spoiler]

Instructions:
[spoiler]
Ctrl=Run
Ctrl+Alt=Supernatural Dash
[/spoiler]
Why Mario kicks ass: