Thread: Whats wrong...
View Single Post
  #4  
Old 07-31-2001, 12:11 AM
Falcor Falcor is offline
Darth Cucumber
Falcor's Avatar
Join Date: Mar 2001
Location: At School
Posts: 2,874
Falcor is on a distinguished road
Send a message via ICQ to Falcor Send a message via AIM to Falcor Send a message via MSN to Falcor Send a message via Yahoo to Falcor
NPC Code:

if (created) {
this.stars=20;
this.s=1;
this.sfdef={26,56,20,2};
this.speed={1,1};
setarray this.star,this.stars*3;
for (this.s=0;this.s<this.stars;this.s++ {
this.star[this.s*3]=random(this.sfdef[0]*10,(this.sfdef[0]+this.sfdef[2])*10)/10;
this.star[this.s*3+1]=random(this.sfdef[1]*10,(this.sfdef[1]+this.sfdef[3])*10)/10;
this.star[this.s*3+2]=random(this.speed[0],this.speed[1])/10;
}
timeout = 0.1;
}
if (timeout) {
for (this.s=0;this.s<this.stars;this.s++ {
if (this.star[this.s*3+1]>this.sfdef[1]+this.sfdef[3]) {
this.star[this.s*3]=random(this.sfdef[0]*10,(this.sfdef[0]+this.sfdef[2])*10)/10;
this.star[this.s*3+1]=random(this.sfdef[1]*10,(this.sfdef[1]+this.sfdef[3])*10)/10;
this.star[this.s*3+2]=random(this.speed[0],this.speed[1])/10;
}else {
this.star[this.s*3+1]+=this.star[this.s*3+2];
}
showimg this.s,kstar.gif,this.star[this.s*3],this.star[this.s*3+1];
}
timeout = 0.1;
}





There. You forgot the ; at the end of your for loops. hehehe
__________________

subliminal message: 1+1=3
Reply With Quote