Archive: I got a mejor problem


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);


17th October 2002 16:28 UTC

Check the last line of the Frame section.
Check the first line of the OnBeat section.


17th October 2002 18:12 UTC

Lol yeah, full of syntax errors :). Count the brackets and commas.


18th October 2002 18:46 UTC

saw it. it it isnet working.