05-24-2017, 02:44 AM
(05-24-2017, 02:24 AM)BeJeremiah Wrote:(05-24-2017, 01:51 AM)Keeroh Wrote: Hello, it's me again!
I have a question, is it possible to permanently modify the move speed values? the 4: Fast is a little slow when walking through the maps and 5: Faster is too fast, I was trying to get something between those two, like 4.5 speed.
I tried going to Game_Character 1 and found @move_speed = 4. i tried changing it to @move_speed = 4.5 and it works, but if I use Set Move Route to change the player's move speed it returns to 4. I can't find where I can modify the speed in set move route to make 4: Fast become 4.5.
Thanks for the attention!
Other than in game character or through a script call, you would not be able to event a variable speed that is not a whole number. Would involve editing the interpreter and still would require a script call either way.
So, a script call from an event with
Code:$game_player.move_speed = {amt here}
Would be the main way I can suggest.
Thanks for the fast reply! I was using game_guy's dash and sneak script, but with it I couldn't edit the player move speed through set mouve route. This script have a script call to enable or disable it, but whenever i tried using the game would crash.
It's sad because it did exactly what I wanted but oh well
I tried using $game_player.move_speed = 6 to test, but i had an error
"NoMethodError occurred while running script."