CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 01:23:07 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=abfe16136b7ea40115beae7dcc75f0d41c1de1e18b8b1a212bcd2f8618718b0ba%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22JmrGVlTMRDeVGZjQhXUvAe5NZz8H9Bvh%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d2ca40bc96b9d7-BLR
Fomar0153 Dash Toggle - Switch Control - Pastebin.com
SHARE
TWEET

Fomar0153 Dash Toggle - Switch Control
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # ╔═════════════════════════════════════╦════════════════════╗
- # ║ Title: Dash Switch Control ║ Version: 1.00 ║
- # ║ Author: Roninator2 / Fomar0153 ║ ║
- # ╠═════════════════════════════════════╬════════════════════╣
- # ║ Function: ║ Date Created ║
- # ║ ╠════════════════════╣
- # ║ Toggle Dash by Switch ║ 07 Feb 2023 ║
- # ╚═════════════════════════════════════╩════════════════════╝
- # ╔══════════════════════════════════════════════════════════╗
- # ║ Instructions: ║
- # ║ ║
- # ║ Configure switch to control the dash function ║
- # ║ True = Press shift to run (default) ║
- # ║ False = Toggle run/walk with button push (shift) ║
- # ║ ║
- # ╚══════════════════════════════════════════════════════════╝
- # ╔══════════════════════════════════════════════════════════╗
- # ║ Updates: ║
- # ║ 2023-Feb-07 - Initial publish ║
- # ║ ║
- # ╚══════════════════════════════════════════════════════════╝
- # ╔══════════════════════════════════════════════════════════╗
- # ║ Terms of use: ║
- # ║ Free for all uses in RPG Maker VX Ace - except nudity ║
- # ╚══════════════════════════════════════════════════════════╝
- module R2_Toggle_Dash
- Dash_Switch = 4 # switch that controls the changing of the dash controls
- end
- class Game_Player < Game_Character
- #--------------------------------------------------------------------------
- # * Object Initialization
- #--------------------------------------------------------------------------
- alias dash_initialize initialize
- def initialize
- dash_initialize
- @dash = false
- end
- #--------------------------------------------------------------------------
- # * Determine if Dashing
- #--------------------------------------------------------------------------
- def dash?
- return false if @move_route_forcing
- return false if $game_map.disable_dash?
- return false if vehicle
- if $game_switches[R2_Toggle_Dash::Dash_Switch]
- return Input.press?(:A)
- else
- return @dash
- end
- end
- #--------------------------------------------------------------------------
- # * Frame Update
- #--------------------------------------------------------------------------
- alias dash_update update
- def update
- dash_update
- @dash = !@dash if Input.trigger?(:A)
- end
- end
Tags:
rpg maker vx ace
Advertisement
Add Comment
Please, Sign In to add comment
-
📝 EASY MONEY GUIDE ✅ Working
JavaScript | 1 sec ago | 0.24 KB
-
⭐⭐⭐Instant Profit Method⭐⭐
Java | 2 sec ago | 0.10 KB
-
📌 ChangeNOW Exploit
JavaScript | 10 sec ago | 0.24 KB
-
⭐⭐⭐Make $1500 in 20 minutes⭐⭐
Java | 13 sec ago | 0.10 KB
-
⭐⭐⭐Profit Method⭐⭐
Java | 25 sec ago | 0.10 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 35 sec ago | 0.25 KB
-
⭐⭐⭐Profit Method⭐⭐
Java | 38 sec ago | 0.10 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ S
JavaScript | 44 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand