17th October 2002 15:17 UTC
I got a mejor problem
I did a RMX to elvis AVS - lastexit002 and I got a problem with the DM.
init:
sy=0;fc=0;maxspeed=0.05;minspeed=0.01;framestop=30*4;a=30;
frame:
fr=fr+0.02;
fc=fc+1;
fc=if(equal(fc,framestop),0,fc);
syb=(0.55*sin(fr)+0.5)*0.05;
syb=if(below(syb,minspeed),0.03,sy);
syb=if(above(syb,maxspeed),0.03,sy);
sy=if(above(fc,framestop),a-1,sy,sy-syb);
beat:
a=if(sy,if(equal(a,0),30,a);
c=c+1;
c=if(equal(c,10),0,c);
pixel:
x=if(above(c,5),x+sy,x-sy);
y=if(below(c,5),y-sy,y+sy);