Thread: Help
View Single Post
  #2  
Old 03-05-2007, 09:29 AM
Chandler Chandler is offline
Banned
Join Date: Jan 2007
Posts: 656
Chandler will become famous soon enough
HTML Code:
if (playertouchsme) {
move 26.5,-4,10,0;
freezeplayer 10;
sleep 10;
TRIGGERACTION npcx, npcy, foundPOSITION,;
}
Don't forget to change the npcx, npcy with the other NPC's position!
You'd then add this in to the other NPC
HTML Code:
if (created){
  setshape 1, 32, 32;
}
if (actionfoundPOSITION){
  this.hasfound++;
  if (this.hasfound >= 2){
    hide;
  }
}
You'd just call the same action twice, for both statues
Reply With Quote