ID:268933
![]() Dec 30 2004, 12:34 pm
|
|
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.
|
Copyright © 2025 BYOND Software.
All rights reserved.
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.