Thread: Slideing door
View Single Post
  #6  
Old 08-29-2001, 11:41 PM
Neoreno Neoreno is offline
Cerebrate
Neoreno's Avatar
Join Date: Aug 2001
Location: England
Posts: 1,663
Neoreno is on a distinguished road
Send a message via AIM to Neoreno
Code

if(playerchats&&strequals(#g,GUILDNAME)){
if(strequals(#c,open door)&&this.open==0){
for (this.moved=0;this.moved<10;this.moved++){
x-=0.5;
sleep 0.1;
}
this.open=1;
}elseif(strequals(#c,close door)&&this.open==1){
for (this.moved=0;this.moved<10;this.moved++){
x+=0.5;
sleep 0.1;
}
this.open=0;
}
}

Will work!!
__________________

Quote:
Exitus Acta Probat: The Outcome Justifies the Deed.
Reply With Quote