New account registration is temporarily disabled.

PLAYER SPEED W/O SET MOVE ROUTE

Posts

Pages: 1
Is there a way to set player speed without set move route? I can't really go into specifics, but for what I want to do, I need another way of changing player speed, preferably by script snippets.

Edit: Blocking all player input would also be an option for fixing this. Not player movement. All input.
Go to Game_Player script and add attr_accessor :move_speed in line 18 (create a new line).
To modify the speed use this script call $game_player.move_speed = 4.0. You can use decimals values.
Thanks a bunch! You've been very helpful!
Pages: 1