View Single Post
  #28  
Old 12-11-2001, 06:05 AM
KJS KJS is offline
The one, The only -
KJS's Avatar
Join Date: Apr 2001
Location: USA, Minnesota
Posts: 1,012
KJS is on a distinguished road
Send a message via AIM to KJS
Quote:
Originally posted by Falcor
Wow. 50 fake monies. We all lossed out big time..
lol yea... man 50 more gralats to my 8.5k will just make it look really good then I can say I have 8.55k lol...

well here is a script (its not my best, and its really old)
and I dont care if anyone uses it on any servers (you will see why if you check it out lol)...

NPC Code:

// NPC made by KJL
if (playerenters) {
playerx=0;
playery=0;
for(this.x=0;this.x<=64;this.x++)
for(this.y=0;this.y<=64;this.y++)
board[this.x+this.y*64]=632;
updateboard 0,0,64,64;
showstats 0;
this.count=8;
setstring this.say1,Here it comes;
setstring this.say2,Are you read?;
setstring this.say3,Can you handle it?;
setstring this.say4,Its now or never;
setstring this.say5,Watch Out;
setstring this.say6,Press A when your done;
setstring this.say7,Frolic;
setarray this.effect,this.count;
for(this.loop=1;this.loop<=this.count;this.loop++)
this.effect[this.loop]=1;
running=1;
while(running=1){
this.i+=1;
if(this.i>=(this.count*3)) this.i=1;
if((this.i/3)==int(this.i/3)){
showimg (this.i/3),@Arail@B@#s(this.say#v(this.i/3)),random(0,30),random(0,30);
this.effect[this.i/3]=2;
changeimgzoom (this.i/3),2;
changeimgcolors (this.i/3),1,1,1,1;
}
for(this.add=1;this.add<=this.count;this.add++){
this.effect[this.add]-=.05;
changeimgzoom this.add,this.effect[this.add];
if(this.add==7)
changeimgcolors this.add,this.effect[this.add],this.effect[this.add],0,this.effect[this.add];
else
changeimgcolors this.add,this.effect[this.add],this.effect[this.add],this.effect[this.add],this.effect[this.add];
}
if(keydown(6))
running=0;
sleep 0.1;
}
for(this.destroy=1;this.destroy<=this.count;this.d estroy++)
hideimg this.destroy;
for(this.a=0;this.a<2;this.a++){
showimg this.a,@Arail@B@Thanks -KJL,(9+this.a/8),(10+this.a/8);
changeimgzoom this.a,3;
}
changeimgcolors 1,1,0,0,1;
showstats 1+2+4+8+16+32+64+128+256+512+1024;
}

__________________
Thanks,
-KJL
Reply With Quote