View Single Post
  #14  
Old 10-09-2002, 09:47 PM
sage_chaozu sage_chaozu is offline
Registered User
sage_chaozu's Avatar
Join Date: Feb 2002
Location: Florida, USA
Posts: 143
sage_chaozu will become famous soon enough
Send a message via ICQ to sage_chaozu Send a message via AIM to sage_chaozu Send a message via MSN to sage_chaozu Send a message via Yahoo to sage_chaozu
Re: Newb Gift: Circular Explosions

Quote:
Originally posted by MattMrHat
NPC Code:

//NPC made by Hironubous
if (playerenters){toweapons Fire;}
if (weaponfired) {
angle = 0.00;
while (angle <= 6.28) {
putexplosion 1, playerx + (5*sin(angle)), playery + (5*cos(angle));
angle += .628;
sleep .05;
}
}

I have noticed that code looks very familiar. Maybe because I have sent him
NPC Code:

if (weaponfired) {
angle = 0.00;
while (angle <= 6.28) {
putexplosion 1, playerx + (5*sin(angle)), playery + (5*cos(angle));
angle += .628;
sleep .05;
}
}


and I get no credit for showing him that. Last time I help anyone.
Also putexplosion was stolen from Stefan's online Bomberman game which was stolen form Bomberman.. X_X
Reply With Quote