Okay well I've started a new game thats a bit more interesting then my first.
it consists of 3 flam spirits who are trying to pass the yellow line(heaven) before the others. You play as the green Spirit and make him go forward with the left arrow don't let go though because the red line(hell) is pulling you back.
So far I haven't done much but I just wanted to see what you guys think.
Link
AS2 as well :D
rs=.5;
ms=1.3;
_root.onEnterFrame = function(){
p._x-=rs;
e1._x+=(Math.random(200)*1.5);
e2._x+=(Math.random(200)*1.45);
if(Key.isDown(Key.RIGHT)){
p._x+=ms;
}
switch(rs){
case(p._x >= e1._x):
rs+=.3;
break;
case(p.hitTest(f)):
trace("Pwins");
break;
default:
//do nothing
break;
}
}