Dumpster,
I checked the door.csv file and it say
#NOTES:
#All Castle doors and gates are found in the castledoor.sql
When i check the query i found this
DROP TABLE IF EXISTS `castle_door`;
CREATE TABLE `castle_door` (
`castleId` tinyint(1) unsigned NOT NULL DEFAULT '0',
`id` int(8) unsigned NOT NULL DEFAULT '0',
`name` varchar(30) NOT NULL,
`x` mediumint(6) NOT NULL DEFAULT '0',
`y` mediumint(6) NOT NULL DEFAULT '0',
`z` mediumint(6) NOT NULL DEFAULT '0',
`range_xmin` mediumint(6) NOT NULL DEFAULT '0',
`range_ymin` mediumint(6) NOT NULL DEFAULT '0',
`range_zmin` mediumint(6) NOT NULL DEFAULT '0',
`range_xmax` mediumint(6) NOT NULL DEFAULT '0',
`range_ymax` mediumint(6) NOT NULL DEFAULT '0',
`range_zmax` mediumint(6) NOT NULL DEFAULT '0',
`hp` mediumint(6) unsigned NOT NULL DEFAULT '0',
`pDef` mediumint(6) unsigned NOT NULL DEFAULT '0',
`mDef` mediumint(6) unsigned NOT NULL DEFAULT '0',
`isWall` enum('true','false') NOT NULL DEFAULT 'false',
PRIMARY KEY (`id`),
KEY `id` (`castleId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
...
(9,22130004,'Castle Wall',80197,-151587,-557,79730,-152022,-840,80861,-150985,-590,2036520,837,674,'true'),
(9,22130005,'Castle Wall',74915,-151587,-555,74229,-152016,-839,75377,-150961,-589,2036520,837,674,'true'),
These last lines is the information about the two walls.
The information about Giran's castle walls are similar:
(3,23220003,'Castle Wall',114540,143297,-2755,114232,143232,-2991,114848,143360,-2531,2036520,837,674,'true'),
(3,23220004,'Castle Wall',114540,146623,-2755,114232,146559,-2989,114848,146687,-2531,2036520,837,674,'true'),
mmm...