- Joined
- Mar 7, 2016
- Messages
- 7
- Reaction score
- 0
- First Language
- English
- Primarily Uses
This is my FIRST TIME using the RPG Maker VX Ace and also my first post, and I can say, what a nifty program!
As for a beginner, I encounter problems and I have to ask this, where can I edit the WASD key movement for my player/menu movement?
Well I have found some codes, but the problem, where to input them? (my hunch is telling me is putting it in a script, but how?)
I also tried the <F1> key mapping but my question would be, would the mapping only affects the maker of the RPG or not?
Thanks btw..
As for a beginner, I encounter problems and I have to ask this, where can I edit the WASD key movement for my player/menu movement?
Well I have found some codes, but the problem, where to input them? (my hunch is telling me is putting it in a script, but how?)
I also tried the <F1> key mapping but my question would be, would the mapping only affects the maker of the RPG or not?
Thanks btw..
Code:
#==============================================================================
# ▼ WASD Movement
# -- Last Updated: 2014.02.25
# -- Author: Helladen
#==============================================================================
module Input
#--------------------------------------------------------------------------
# alias method: self.dir4
#--------------------------------------------------------------------------
class <<self; alias helladen_dir4 dir4; end
def self.dir4
return 2 if Input.press?(:Y)
return 4 if Input.press?(:X)
return 6 if Input.press?(:Z)
return 8 if Input.press?(:R)
helladen_dir4
end
end

