- Joined
- Apr 19, 2018
- Messages
- 59
- Reaction score
- 2
- First Language
- Indonesia
- Primarily Uses
- RMVXA
In RPG Maker VX Ace, how do i activate switch when dashing/running?
class Game_Player < Game_Character
alias :dash_update :update
def update
$game_switches[5] = dash? && moving?
dash_update
end
end