- Joined
- Apr 16, 2015
- Messages
- 33
- Reaction score
- 6
- First Language
- English
- Primarily Uses
- RMMV
Hey so I was wondering what I can do to get a vehicle (Ex. boat) to have a lower speed to move slower in general. I went to the Game_Vehicle scripting page and I found this:
#-------------------------------------------------------------------------- # * Initialize Move Speed #-------------------------------------------------------------------------- def init_move_speed @move_speed = 4 if @type == :boat @move_speed = 5 if @type == :ship @move_speed = 6 if @type == :airship endI tried to change the @move_speed for the boat type down to 2 and there was no change in speed. I looked for other stuff on the page yet there was still nothing I could really find. Can anyone help me with this?
- Kevin
#-------------------------------------------------------------------------- # * Initialize Move Speed #-------------------------------------------------------------------------- def init_move_speed @move_speed = 4 if @type == :boat @move_speed = 5 if @type == :ship @move_speed = 6 if @type == :airship endI tried to change the @move_speed for the boat type down to 2 and there was no change in speed. I looked for other stuff on the page yet there was still nothing I could really find. Can anyone help me with this?
- Kevin
Last edited by a moderator:


