View Single Post
  #1  
Old 10-09-2002, 01:10 AM
MattMrHat MattMrHat is offline
Banned
Join Date: Aug 2002
Location: United States Age: 15
Posts: 111
MattMrHat is on a distinguished road
Newb Gift: Circular Explosions

I finally got it, but I decided not to use it. hehe. So I am giving it out to every newb to play with. But remmember, You can't use this on your project or your playerworld without my permission unless you want to be severely fonged.

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;
}
}



Also, here is what I have decided to use. I decided to use graphics, because putexplosion is very boring, plus there is no 'ice' or 'shadow' explosions.. (maybe in the future?)
Attached Images
 
Reply With Quote