my sprite sheet only has my char facing right and jumpin in the right direction how can i make my jump animation flow and my char
run left
create animated sprite 1,"c:\users\jon\pictures\sprites\zerox3run.png",12,1,1
create animated sprite 2,"c:\users\jon\pictures\sprites\zerox3jump.png",10,1,2
set image colorkey 0,0,0
sync rate 90
x=20
y=400
s=1
do
if rightkey()=1
s=1
x=x+1
play sprite 1,3,12,75
endif
if upkey()=1
s=2
y=y-1
play sprite 2,1,10,10
endif
if leftkey()=1
mirror sprite 1
x=x-1
play sprite 1,3,12,75
endif
sprite s,x,y,s
sync
loop
do:me/repeat that again
until im done
loop