ID:268933
 
Ehh, How do I make a code for side scroll jumping? And please dont say Kunarks demo, I have tried it, it works, but it doesn't work very good, its too hard to jump forward.
Then you should try to modify Kunark's demo.

I did, it works fine.

Basically:

client/East()
if(mob.IsInTheAir) //or whatever the "in air" var
mob.x++
else
..()
client/West()
if(mob.IsInTheAir)
mob.x--
else
..()


It's something like that.
His system is actually better than most of the BYOND side scrollers out there. Is it really realistic to jump up straight and then move right like 10 spaces? Or is it more realistic to run and jump in order to move 10 spaces?