Thread: ReplaceGani
View Single Post
  #8  
Old 06-30-2001, 03:22 PM
grim_squeaker_x grim_squeaker_x is offline
Retired Oldbie
grim_squeaker_x's Avatar
Join Date: Mar 2001
Posts: 3,084
grim_squeaker_x will become famous soon enough
NPC Code:
if (created) 
setshape 1,32,32;
if (playertouchsme)
toweapons Torch;
if (weaponfired) {
this.active=1-this.active;
if (this.active==1) {
replaceani idle,torch_idle;
replaceani walk,torch_walk;
}
else {
replaceani torch_idle,idle;
replaceani torch_walk,walk;
}
}

__________________