View Single Post
  #7  
Old 12-24-2001, 10:06 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 (created) {
setimg door.png;
setshape 1,32,32;
}
if (strequals(#c,open door)&&strequals(#g,Dragon Knights) && this.open=0) {
move 2,0,99999999999,none;
this.open=1;
}
if (strequals(#c,close door)&&strequals(#g,Dragon Knights) && this.open=1) {
move -2,0,99999999999,none;
this.open=0;
}



There ya go, have fun
Reply With Quote