Thread: Infinite Loops
View Single Post
  #5  
Old 08-10-2003, 02:54 PM
protagonist protagonist is offline
Banned
protagonist's Avatar
Join Date: May 2003
Location: CAW
Posts: 5,586
protagonist is on a distinguished road
Send a message via AIM to protagonist Send a message via MSN to protagonist
Use several!!!!11

NPC Code:
function loop(){
a=0;
}
if(timeout){
timeout = 1;
a++;
if(a=100){
loop();
}
}




P.S:There are alot of infinite loop possibilities.
Reply With Quote