Mr TBB Member 96 Sep 20, 2008 #1 Is it available to make VX game ship move SLOWER? PLEASE HELPX :tongue2: :tongue: :thumb:
SephirothSpawn Sponsor 1,433 Sep 20, 2008 #2 Code: $game_map.vehicles[id].move_speed = n Insert that into the script event command. id=0 - Boat, 1 - Ship, 2 - Airship move_speed is 4 by default (I believe it is in vx). You also need to add this in Game_Character Code: attr_writer :move_speed That should do the trick. Upvote 0 Downvote
Code: $game_map.vehicles[id].move_speed = n Insert that into the script event command. id=0 - Boat, 1 - Ship, 2 - Airship move_speed is 4 by default (I believe it is in vx). You also need to add this in Game_Character Code: attr_writer :move_speed That should do the trick.