PDA

View Full Version : more door problems


Minlail
03-29-2005, 12:21 PM
pic explains it all click door says its not there but its in the db, any ideas?

sysadmin
03-29-2005, 12:58 PM
renumber the door number to other non-cero number, like 44 .

Minlail
03-29-2005, 03:13 PM
nope didnt fix it

sysadmin
03-30-2005, 04:13 AM
I tested this door and works fine on my server, here is the door entry:

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:

DELETE FROM DOORS WHERE id=1413;

then add it back with this:

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.