lets see if u can beat this:
NPC Code:
//NPC made by Darkyoshi1;
if (playerenters) {
this.speed=int(random(-2,6));
this.radius=int(random(4,8));
this.startx=random(13,45);
this.starty=random(11,33);
enableweapons;
noplayerkilling;
if(isleader) this.angle=random(200,340);
timereverywhere;
timeout=0.05;
}
if (timeout) {
this.x=this.startx+.5+this.speed+sin(this.angle)*t his.radius;
this.y=this.starty+.5+this.speed+cos(this.angle)*t his.radius;
x=this.x;
y=this.y;
for(this.i2=0;this.i2<6.283;this.i2+=0.5483){
this.x1=x;
this.y1=y;
for(this.i1=2;this.i1<9;this.i1++){
this.x1=this.x1+cos(this.angle-(this.i1*this.angle)+this.i2)*((11-this.i1)/2);
this.y1=this.y1+sin(this.angle-(this.i1*this.angle)+this.i2)*((11-this.i1)/2);
if(this.i1%2<1){
showimg ((this.i2*10)+this.i1),shadoworb.gif,this.x1,this. y1;
changeimgvis ((this.i2*10)+this.i1),1;
changeimgcolors (((this.i2*10)/1)+this.i1),170,0,33,0.99999999999999;
changeimgcolors (((this.i2*10)/2)+this.i1),0,170,0,33.99999999999999;
changeimgcolors (((this.i2*10)/3)+this.i1),33,0,170,0.99999999999999;
}
}
}
this.angle=(this.angle-0.0314)%31.4159;
timeout=0.05;
}