Save-Point
Pixelmovement and speed - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Games Development (https://www.save-point.org/forum-4.html)
+--- Forum: Code Support (https://www.save-point.org/forum-20.html)
+--- Thread: Pixelmovement and speed (/thread-180.html)



Pixelmovement and speed - ark - 05-31-2010

Hi,

I've got a brand new question about pixelmovement, but not only pixelmovement, so...
If you can, please help me! I'd appreciate it very very very much!

So my question(s) (Please keep in mind that I have Pixelmovement)

1. Is it possible to controll the character move speed by a larger margin than 6? (So I'm not asking if the characters could move even faster or slower, but that can I controll it more how fast is it. So instead of saying speed 1 or 2, can I say 1.4 or 2.77)

2. How can I change the speed via call script instead of command? (I can't find a syntax list of these kind of things anywhere)

Thank you very very much, in advance.


Pixelmovement and speed - Jaberwocky - 05-31-2010

1. I -think- it is, though with my experience most decimal move speeds cause some choppy looking animation, since you can't display half a pixel or anything like that.

2. $game_player/$game_map.events[id].move_speed = n


Pixelmovement and speed - ark - 05-31-2010

Thanks.