Thread: Circles!
View Single Post
  #9  
Old 02-06-2002, 10:51 AM
Faheria_GP2 Faheria_GP2 is offline
Banned
Faheria_GP2's Avatar
Join Date: Oct 2001
Posts: 1,177
Faheria_GP2 is on a distinguished road
NPC Code:

if (playerenters) timeout=.05;
if (timeout) {
this.angle=(this.angle+.1)%6.28;
showimg 0,beer.gif,x+6*sin(this.angle),y+6*cos(this.angle) ;
timeout=.05;
}

Reply With Quote