- Joined
- Jan 12, 2016
- Messages
- 2
- Reaction score
- 0
- First Language
- English
I need a script for what's probably a simple problem.
I've used a script to change the player character's walking speed. (I had to use a script to do this, for some reason when I try to do this through "set movement route" it doesn't work. Other commands in the set move route window work, but not speed change or frequency. They simply don't change anything.)
The script to change the movement speed works fine, but I need a separate script to change the player's frequency as well. (I need this because rpg maker's default animation speed looks odd with the sprites I've made.)
I've found lots of results for this problem for VX Ace, but nothing for MV.
This is the script I'm using for speed change by the way
$gamePlayer._moveSpeed = Math.min(5, $gamePlayer._moveSpeed + 1)
I've used a script to change the player character's walking speed. (I had to use a script to do this, for some reason when I try to do this through "set movement route" it doesn't work. Other commands in the set move route window work, but not speed change or frequency. They simply don't change anything.)
The script to change the movement speed works fine, but I need a separate script to change the player's frequency as well. (I need this because rpg maker's default animation speed looks odd with the sprites I've made.)
I've found lots of results for this problem for VX Ace, but nothing for MV.
This is the script I'm using for speed change by the way
$gamePlayer._moveSpeed = Math.min(5, $gamePlayer._moveSpeed + 1)

