Thread: Slideing door
View Single Post
  #7  
Old 08-30-2001, 10:24 PM
Falcor Falcor is offline
Darth Cucumber
Falcor's Avatar
Join Date: Mar 2001
Location: At School
Posts: 2,874
Falcor is on a distinguished road
Send a message via ICQ to Falcor Send a message via AIM to Falcor Send a message via MSN to Falcor Send a message via Yahoo to Falcor
NPC Code:

if(playerchats && strequals(#g,GUILDNAME)){
if(strequals(#c,open door)&&dooropen==0){
dooropen=2;
move -5,0,10,0;
sleep 10;
dooropen=1;
}else if(strequals(#c,close door)&&dooropen==1){
dooropen=2;
move 5,0,10,0;
sleep 10;
dooropen=0;
}
}



Why make life harder and lag more?
__________________

subliminal message: 1+1=3
Reply With Quote