View Single Post
  #4  
Old 03-30-2005, 04:13 AM
sysadmin
Hill Giant
 
Join Date: Feb 2005
Posts: 163
Default

I tested this door and works fine on my server, here is the door entry:

Quote:
INSERT INTO doors VALUES
(1413,1,'mistmoore','MISTGATE',160.878,386.924,-237.904,256.0,1,0,0,0,0,0,0,-1,'NONE',0,0,0,0,0,0,100);
You can delete this door by using this command:

Quote:
DELETE FROM DOORS WHERE id=1413;
then add it back with this:

Quote:
INSERT INTO doors VALUES
(1413,44,'mistmoore','MISTGATE',160.878,386.924,-237.904,256.0,1,0,0,0,0,0,0,-1,'NONE',0,0,0,0,0,0,100);
I renumbered this door to 44 since you have it on 0 and the next doorID available is number 44.

the changes takes place after server restart.

Good luck.
__________________
Sysadmin.

Last edited by sysadmin; 03-30-2005 at 12:34 PM..
Reply With Quote