Dropped Classic support.

This commit is contained in:
MobiusDev
2015-10-23 23:44:21 +00:00
parent d49a007f9d
commit 39f05439c3
7958 changed files with 58 additions and 782473 deletions

View File

@ -1,17 +0,0 @@
DROP TABLE IF EXISTS `auction`;
CREATE TABLE IF NOT EXISTS `auction` (
`id` int(11) NOT NULL DEFAULT '0',
`sellerId` int(11) NOT NULL DEFAULT '0',
`sellerName` varchar(50) NOT NULL DEFAULT 'NPC',
`sellerClanName` varchar(50) NOT NULL DEFAULT '',
`itemType` varchar(25) NOT NULL DEFAULT '',
`itemId` int(11) NOT NULL DEFAULT '0',
`itemObjectId` int(11) NOT NULL DEFAULT '0',
`itemName` varchar(40) NOT NULL DEFAULT '',
`itemQuantity` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`startingBid` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`currentBid` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`endDate` bigint(13) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`itemType`,`itemId`,`itemObjectId`),
KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@ -1,25 +0,0 @@
DROP TABLE IF EXISTS `castle`;
CREATE TABLE IF NOT EXISTS `castle` (
`id` INT NOT NULL DEFAULT 0,
`name` varchar(25) NOT NULL,
`side` enum('NEUTRAL','LIGHT','DARK') DEFAULT 'NEUTRAL' NOT NULL,
`treasury` BIGINT NOT NULL DEFAULT 0,
`siegeDate` bigint(13) unsigned NOT NULL DEFAULT '0',
`regTimeOver` enum('true','false') DEFAULT 'true' NOT NULL,
`regTimeEnd` bigint(13) unsigned NOT NULL DEFAULT '0',
`showNpcCrest` enum('true','false') DEFAULT 'false' NOT NULL,
`ticketBuyCount` smallint(3) NOT NULL DEFAULT 0,
PRIMARY KEY (`name`),
KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `castle` VALUES
(1,'Gludio','NEUTRAL',0,0,'true',0,'false',0),
(2,'Dion','NEUTRAL',0,0,'true',0,'false',0),
(3,'Giran','NEUTRAL',0,0,'true',0,'false',0),
(4,'Oren','NEUTRAL',0,0,'true',0,'false',0);
-- (5,'Aden','NEUTRAL',0,0,'true',0,'false',0),
-- (6,'Innadril','NEUTRAL',0,0,'true',0,'false',0),
-- (7,'Goddard','NEUTRAL',0,0,'true',0,'false',0),
-- (8,'Rune','NEUTRAL',0,0,'true',0,'false',0),
-- (9,'Schuttgart','NEUTRAL',0,0,'true',0,'false',0);

View File

@ -1,54 +0,0 @@
DROP TABLE IF EXISTS `clanhall`;
CREATE TABLE IF NOT EXISTS `clanhall` (
`id` int(11) NOT NULL DEFAULT '0',
`name` varchar(40) NOT NULL DEFAULT '',
`ownerId` int(11) NOT NULL DEFAULT '0',
`lease` int(10) NOT NULL DEFAULT '0',
`desc` text NOT NULL,
`location` varchar(15) NOT NULL DEFAULT '',
`paidUntil` bigint(13) unsigned NOT NULL DEFAULT '0',
`Grade` decimal(1,0) NOT NULL DEFAULT '0',
`paid` int( 1 ) NOT NULL DEFAULT '0',
PRIMARY KEY `id` (`id`),
KEY `ownerId` (`ownerId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `clanhall` VALUES
('22','Moonstone Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
('23','Onyx Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
('24','Topaz Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
('25','Ruby Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
('26','Crystal Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('27','Onyx Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('28','Sapphire Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('29','Moonstone Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('30','Emerald Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('31','The Atramental Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
('32','The Scarlet Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
('33','The Viridian Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
-- ('36','The Golden Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('37','The Silver Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('38','The Mithril Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('39','Silver Manor','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('40','Gold Manor','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('41','The Bronze Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
('42','The Golden Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
('43','The Silver Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
('44','The Mithril Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
('45','The Bronze Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
('46','Silver Manor','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0');
-- ('47','Moonstone Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
-- ('48','Onyx Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
-- ('49','Emerald Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
-- ('50','Sapphire Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
-- ('51','Mont Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('52','Astaire Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('53','Aria Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('54','Yiana Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('55','Roien Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('56','Luna Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('57','Traban Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('58','Eisen Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
-- ('59','Heavy Metal Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
-- ('60','Molten Ore Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
-- ('61','Titan Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0');

View File

@ -1,20 +0,0 @@
DROP TABLE IF EXISTS `grandboss_data`;
CREATE TABLE IF NOT EXISTS `grandboss_data` (
`boss_id` smallint(5) unsigned NOT NULL,
`loc_x` mediumint(6) NOT NULL,
`loc_y` mediumint(6) NOT NULL,
`loc_z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
`respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`currentHP` decimal(30,15) NOT NULL,
`currentMP` decimal(30,15) NOT NULL,
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`boss_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `grandboss_data` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`currentHP`,`currentMP`) VALUES
(29001, -21610, 181594, -5734, 0, 229898.48, 667.776), -- Queen Ant (40)
(29006, 17726, 108915, -6480, 0, 622493.58388, 3793.536), -- Core (50)
(29014, 55024, 17368, -5412, 10126, 622493.58388, 3793.536), -- Orfen (50)
-- (29020, 116033, 17447, 10107, -25348, 4068372, 39960), -- Baium (75)
(29068, 185708, 114298, -8221,32768, 62802301, 1998000); -- Antharas Strong (85)

File diff suppressed because it is too large Load Diff

View File

@ -1,193 +0,0 @@
DROP TABLE IF EXISTS raidboss_spawnlist;
CREATE TABLE raidboss_spawnlist (
`boss_id` smallint(5) unsigned NOT NULL,
`amount` tinyint(1) unsigned NOT NULL DEFAULT '1',
`loc_x` mediumint(6) NOT NULL,
`loc_y` mediumint(6) NOT NULL,
`loc_z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
`respawn_delay` mediumint(6) unsigned NOT NULL DEFAULT '129600', -- 36 Hours
`respawn_random` mediumint(6) unsigned NOT NULL DEFAULT '86400', -- (24 Hours)
`respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`currentHp` decimal(8,0) DEFAULT NULL,
`currentMp` decimal(8,0) DEFAULT NULL,
PRIMARY KEY (`boss_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `raidboss_spawnlist` VALUES
(25001,1,-54416,146480,-2887,0,43200,129600,0,95986,545), -- Greyclaw Kutus (23)
(25004,1,-94208,100240,-3520,0,43200,129600,0,168366,763), -- Turek Mercenary Captain (30)
(25007,1,124240,75376,-2800,0,43200,129600,0,331522,1062), -- Retreat Spider Cletu (42)
(25010,1,113920,52960,-3735,0,43200,129600,0,624464,2039), -- Furious Thieles (55)
(25013,1,169744,11920,-2732,0,43200,129600,0,507285,1722), -- Ghost Of Peasant Leader (50)
(25016,1,76787,245775,-10376,0,43200,129600,0,188376,2368), -- The 3rd Underwater Guardian (60)
(25019,1,7376,169376,-3600,0,43200,129600,0,206185,606), -- Pan Dryad (25)
(25020,1,90384,125568,-2128,0,43200,129600,0,156584,893), -- Breka Warlock Pastu (34)
(25023,1,27280,101744,-3696,0,43200,129600,0,208019,1415), -- Stakato Queen Zyrnna (34)
(25026,1,92976,7920,-3914,0,43200,129600,0,352421,1660), -- Katu Van Leader Atui (49)
(25029,1,54941,206705,-3728,0,43200,129600,0,156190,1911), -- Atraiban (53)
(25032,1,88532,245798,-10376,0,43200,129600,0,229722,2707), -- Eva's Guardian Millenu (58)
(25035,1,180968,12035,-2720,0,43200,129600,0,888658,3058), -- Shilen's Messenger Cabrio (70)
(25038,1,-57360,186272,-4967,0,43200,129600,0,116581,699), -- Tirak (28)
(25041,1,10416,126880,-3676,0,43200,129600,0,165289,927), -- Remmel (35)
(25044,1,107792,27728,-3488,0,43200,129600,0,319791,1296), -- Barion (47)
(25047,1,116352,27648,-3319,0,43200,129600,0,352421,1660), -- Karte (49)
(25050,1,125520,27216,-3632,0,43200,129600,0,771340,2039), -- Verfa (51)
(25051,1,117760,-9072,-3264,0,43200,129600,0,818959,2707), -- Rahha (65)
(25054,1,113432,16403,3960,0,43200,129600,0,945900,3420), -- Kernon (75)
(25057,1,107056,168176,-3456,0,43200,129600,0,288415,2235), -- Biconne Of Blue Sky (45)
(25060,1,-60428,188264,-4512,0,43200,129600,0,99367,575), -- Unrequited Kael (24)
(25063,1,-91024,116304,-3466,0,43200,129600,0,330579,927), -- Chertuba Of Great Soul (35)
(25064,1,92528,84752,-3703,0,43200,129600,0,218810,1120), -- Wizard Of Storm Teruk (40)
(25067,1,94992,-23168,-2176,0,43200,129600,0,554640,1598), -- Captain Of Red Flag Shaka (52)
(25070,1,125600,50100,-3600,0,43200,129600,0,451391,2039), -- Enchanted Forest Watcher Ruell (55)
(25073,1,143265,110044,-3944,0,43200,129600,0,875948,2987), -- Bloody Priest Rudelto (69)
(25076,1,-60976,127552,-2960,0,43200,129600,0,103092,606), -- Princess Molrang (25)
(25079,1,53712,102656,-1072,0,43200,129600,0,168366,763), -- Cat's Eye Bandit (30)
(25082,1,88512,140576,-3483,0,43200,129600,0,206753,1062), -- Leader Of Cat Gang (39)
(25085,1,66944,67504,-3704,0,43200,129600,0,371721,1355), -- Timak Orc Chief Ranger (44)
(25088,1,90848,16368,-5296,0,43200,129600,0,702418,2039), -- Crazy Mechanic Golem (43)
(25089,1,165424,93776,-2992,0,43200,129600,0,512194,2301), -- Soulless Wild Boar (59)
(25092,1,116151,16227,1944,0,43200,129600,0,888658,3058), -- Korim (70)
(25095,1,-37856,198128,-2672,0,43200,129600,0,121941,731), -- Elf Renoa (29)
(25098,1,123536,133504,-3584,0,43200,129600,0,330579,927), -- Sejarr's Servitor (35)
(25099,1,64048,16048,-3536,0,43200,129600,0,273375,1355), -- Rotten Tree Repiro (44)
(25102,1,113840,84256,-2480,0,43200,129600,0,576831,1722), -- Shacram (45)
(25103,1,135872,94592,-3735,0,43200,129600,0,451391,2039), -- Sorcerer Isirr (55)
(25106,1,173880,-11412,-2880,0,43200,129600,0,526218,2570), -- Ghost Of The Well Lidia (60)
(25109,1,152660,110387,-5520,0,43200,129600,0,935092,3347), -- Antharas Priest Cloe (74)
(25112,1,116128,139392,-3640,0,43200,129600,0,127782,763), -- Agent Of Beres, Meana (30)
(25115,1,94000,197500,-3300,0,43200,129600,0,294846,1120), -- Icarus Sample 1 (40)
(25118,1,50896,146576,-3645,0,43200,129600,0,330579,1415), -- Guilotine, Warden Of The Execution Grounds (35)
(25119,1,121872,64032,-3536,0,43200,129600,0,507285,1722), -- Messenger Of Fairy Queen Berun (50)
(25122,1,86300,-8200,-3000,0,43200,129600,0,467209,2235), -- Refugee Hopeful Leo (56)
(25125,1,170656,85184,-2000,0,43200,129600,0,1637918,2707), -- Fierce Tiger King Angel (65)
(25126,1,116263,15916,6992,0,43200,129600,0,1974940,3718), -- Longhorn Golkonda (79)
(25127,1,-47552,219232,-2413,0,43200,129600,0,198734,763), -- Langk Matriarch Rashkos (24)
(25128,1,17696,179056,-3520,0,43200,129600,0,148507,860), -- Vuku Grand Seer Gharmash (33)
(25131,1,75488,-9360,-2720,0,43200,129600,0,369009,1415), -- Carnage Lord Gato (50)
(25134,1,87536,75872,-3591,0,43200,129600,0,218810,1722), -- Leto Chief Talkin (40)
(25137,1,125280,102576,-3305,0,43200,129600,0,451391,2039), -- Beleth's Seer Sephia (55)
(25140,1,191975,56959,-7616,0,43200,129600,0,818959,2707), -- Hekaton Prime (65)
(25143,1,113102,16002,6992,0,43200,129600,0,977229,3718), -- Fire Of Wrath Shuriel (78)
(25146,1,-13056,215680,-3760,0,43200,129600,0,90169,485), -- Serpent Demon Bifrons (21)
(25149,1,-12656,138176,-3584,0,43200,129600,0,103092,606), -- Zombie Lord Crowl (25)
(25152,1,43872,123968,-2928,0,43200,129600,0,165289,927), -- Flame Lord Shadar (35)
(25155,1,73520,66912,-3728,0,43200,129600,0,294846,1120), -- Shaman King Selu (40)
(25158,1,77104,5408,-3088,0,43200,129600,0,920790,1722), -- King Tarlk (48)
(25159,1,124984,43200,-3625,0,43200,129600,0,435256,1975), -- Paniel The Unicorn (54)
(25162,1,194107,53884,-4368,0,43200,129600,0,1461912,2368), -- Giant Marpanak (60)
(25163,1,130500,59098,3584,0,43200,129600,0,888658,3058), -- Roaring Skylancer (70)
(25166,1,-21800,152000,-2900,0,43200,129600,0,134813,606), -- Ikuntai (25)
(25169,1,-54464,170288,-3136,0,43200,129600,0,336732,763), -- Ragraman (30)
(25170,1,26064,121808,-3738,0,43200,129600,0,195371,1028), -- Lizardmen Leader Hellion (38)
(25173,1,75968,110784,-2512,0,43200,129600,0,288415,1415), -- Tiger King Karuta (45)
(25176,1,92544,115232,-3200,0,43200,129600,0,451391,2039), -- Black Lily (55)
(25179,1,181814,52379,-4344,0,43200,129600,0,526218,2368), -- Guardian Of The Statue Of Giant Karum (60)
(25182,1,41966,215417,-3728,0,43200,129600,0,512194,2707), -- Demon Kurikups (59)
(25185,1,88123,166312,-3412,0,43200,129600,0,165289,927), -- Tasaba Patriarch Hellena (35)
(25188,1,88256,176208,-3488,0,43200,129600,0,255564,763), -- Apepi (30)
(25189,1,68832,203024,-3547,0,43200,129600,0,156584,893), -- Cronos's Servitor Mumu (34)
(25192,1,125920,190208,-3291,0,43200,129600,0,258849,1296), -- Earth Protector Panathen (43)
(25198,1,102656,157424,-3735,0,43200,129600,0,1777317,2639), -- Fafurion's Herald Lokness (70)
(25199,1,108096,157408,-3688,0,43200,129600,0,912634,2707), -- Water Dragon Seer Sheshark (72)
(25202,1,119760,157392,-3744,0,43200,129600,0,935092,2777), -- Krokian Padisha Sobekk (74)
(25205,1,123808,153408,-3671,0,43200,129600,0,956490,3274), -- Ocean Flame Ashakiel (76)
(25208,1,73776,201552,-3760,0,43200,129600,0,218810,1722), -- Water Couatle Ateka (40)
(25211,1,76352,193216,-3648,0,43200,129600,0,174646,1975), -- Sebek (36)
(25214,1,112112,209936,-3616,0,43200,129600,0,218810,2368), -- Fafurion's Page Sika (40)
(25217,1,89904,105712,-3292,0,43200,129600,0,369009,1722), -- Cursed Clara (50)
-- (25220,1,113551,17083,-2120,0,43200,129600,0,924022,3274), -- Death Lord Hallate (73) (ToI)
(25223,1,43152,152352,-2848,0,43200,129600,0,165289,1237), -- Soul Collector Acheron (35)
(25226,1,104240,-3664,-3392,0,43200,129600,0,768537,2502), -- Roaring Lord Kastor (62)
(25229,1,137568,-19488,-3552,0,43200,129600,0,1891801,3420), -- Storm Winged Naga (75)
(25230,1,66672,46704,-3920,0,43200,129600,0,482650,2169), -- Timak Seer Ragoth (57)
(25233,1,185800,-26500,-2000,0,43200,129600,0,1256671,3643), -- Spirit Of Andras, The Betrayer (69)
(25234,1,120080,111248,-3047,0,43200,129600,0,1052436,2707), -- Ancient Weird Drake (60)
(25235,1,116400,-62528,-3264,0,43200,129600,0,912634,3202), -- Vanor Chief Kandra (72)
(25238,1,155000,85400,-3200,0,43200,129600,0,512194,2846), -- Abyss Brukunt (59)
(25241,1,165984,88048,-2384,0,43200,129600,0,624464,2639), -- Harit Hero Tamash (55)
(25244,1,187360,45840,-5856,0,43200,129600,0,1891801,3420), -- Last Lesser Giant Olkuth (75)
(25245,1,172000,55000,-5400,0,43200,129600,0,977229,3643), -- Last Lesser Giant Glaki (78)
(25248,1,127903,-13399,-3720,0,43200,129600,0,1825269,3274), -- Doom Blade Tanatos (72)
(25249,1,147104,-20560,-3377,0,43200,129600,0,945900,3420), -- Palatanos Of Horrific Power (75)
(25252,1,192376,22087,-3608,0,43200,129600,0,888658,3058), -- Palibati Queen Themis (70)
(25255,1,170048,-24896,-3440,0,43200,129600,0,1637918,2707), -- Gargoyle Lord Tiphon (65)
(25256,1,170320,42640,-4832,0,43200,129600,0,526218,2368), -- Taik High Prefect Arak (60)
-- (25259,1,42050,208107,-3752,0,43200,129600,0,1248928,2039), -- Zaken's Butcher Krantz (55) (Devil's Isle)
(25260,1,93120,19440,-3607,0,43200,129600,0,392985,1722), -- Iron Giant Totem (45)
(25263,1,144400,-28192,-1920,0,43200,129600,0,848789,2846), -- Kernon's Faithful Servant Kelone (67)
(25266,1,188983,13647,-2672,0,43200,129600,0,945900,3420), -- Bloody Empress Decarbia (75)
(25269,1,123504,-23696,-3481,0,43200,129600,0,888658,3058), -- Beast Lord Behemoth (70)
(25272,1,49248,127792,-3552,0,43200,129600,0,233163,1415), -- Partisan Leader Talakin (28)
(25276,1,154088,-14116,-3736,0,43200,129600,0,1891801,3420), -- Death Lord Ipos (75)
(25277,1,54651,180269,-4976,0,43200,129600,0,507285,1722), -- Lilith's Witch Marilion (50)
(25280,1,85622,88766,-5120,0,43200,129600,0,1248928,2039), -- Pagan Watcher Cerberon (55)
(25281,1,151053,88124,-5424,0,43200,129600,0,1777317,3058), -- Anakim's Nemesis Zakaron (70)
(25282,1,179311,-7632,-4896,0,43200,129600,0,1891801,3420), -- Death Lord Shax (75)
(25293,1,134672,-115600,-1216,0,43200,129600,0,977229,3718), -- Hestia, Guardian Deity Of The Hot Springs (78)
(25299,1,148160,-73808,-4919,0,43200,129600,0,714778,3718), -- Ketra's Hero Hekaton (80)
(25302,1,145504,-81664,-6016,0,43200,129600,0,743801,3718), -- Ketra's Commander Tayr (84)
(25305,1,145008,-84992,-6240,0,43200,129600,0,1532678,3718), -- Ketra's Chief Brakki (87)
(25309,1,115552,-39200,-2480,0,43200,129600,0,714778,3718), -- Varka's Hero Shadith (80)
(25312,1,109216,-36160,-938,0,43200,129600,0,743801,3718), -- Varka's Commander Mos (84)
(25315,1,105584,-43024,-1728,0,43200,129600,0,1532678,3718), -- Varka's Chief Horus (87)
(25319,1,184542,-106330,-6304,0,43200,129600,0,1048567,3718), -- Ember (85)
(25322,1,93296,-75104,-1824,0,43200,129600,0,834231,3718), -- Demon's Agent Falston (66)
(25325,1,91008,-85904,-2736,0,43200,129600,0,888658,3718), -- Flame Of Splendor Barakiel (70)
(25352,1,-16912,174912,-3264,0,43200,129600,0,127782,3718), -- Giant Wasteland Basilisk (30)
(25354,1,-16096,184288,-3817,0,43200,129600,0,165289,3718), -- Gargoyle Lord Sirocco (35)
(25357,1,-3456,112864,-3456,0,43200,129600,0,90169,3718), -- Sukar Wererat Chief (21)
(25360,1,29216,179280,-3624,0,43200,129600,0,107186,3718), -- Tiger Hornet (26)
(25362,1,-55920,186768,-3336,0,43200,129600,0,95986,3718), -- Tracker Leader Sharuk (23)
(25365,1,-62000,190256,-3687,0,43200,129600,0,214372,3718), -- Patriarch Kuroboros (26)
(25366,1,-62368,179440,-3594,0,43200,129600,0,95986,3718), -- Kuroboros' Priest (23)
(25369,1,-45616,111024,-3808,0,43200,129600,0,103092,3718), -- Soul Scavenger (25)
(25372,1,48000,243376,-6611,0,43200,129600,0,175392,3718), -- Discarded Guardian (20)
(25373,1,9649,77467,-3808,0,43200,129600,0,90169,3718), -- Malex Herald Of Dagoniel (21)
(25375,1,22500,80300,-2772,0,43200,129600,0,87696,3718), -- Zombie Lord Farakelsus (20)
(25378,1,-54096,84288,-3512,0,43200,129600,0,87696,3718), -- Madness Beast (20)
(25380,1,-47367,51548,-5904,0,43200,129600,0,90169,3718), -- Kaysha Herald Of Icarus (21)
(25383,1,51632,153920,-3552,0,43200,129600,0,156584,3718), -- Revenant Of Sir Calibus (34)
(25385,1,53600,143472,-3872,0,43200,129600,0,174646,3718), -- Evil Spirit Tempest (36)
(25388,1,40128,101920,-1241,0,43200,129600,0,165289,3718), -- Red Eye Captain Trakia (35)
(25391,1,45600,120592,-2455,0,43200,129600,0,297015,3718), -- Nurka's Messenger (33)
(25392,1,29928,107160,-3708,0,43200,129600,0,141034,3718), -- Captain Of Queen's Royal Guards (32)
(25394,1,101888,200224,-3680,0,43200,129600,0,390743,3718), -- Premo Prime (38)
(25395,1,15000,119000,-11900,0,43200,129600,0,288415,3718), -- Archon Suscepter (45)
(25398,1,5000,189000,-3728,0,43200,129600,0,165289,3718), -- Eye Of Beleth (35)
(25401,1,117808,102880,-3600,0,43200,129600,0,141034,3718), -- Skyla (32)
(25404,1,35992,191312,-3104,0,43200,129600,0,148507,3718), -- Corsair Captain Kylon (33)
(25407,1,115072,112272,-3018,0,43200,129600,0,526218,3718), -- Lord Ishka (60)
(25410,1,72192,125424,-3657,0,43200,129600,0,218810,3718), -- Road Scavenger Leader (40)
(25412,1,81920,113136,-3056,0,43200,129600,0,319791,3718), -- Necrosentinel Royal Guard (47)
(25415,1,128352,138464,-3467,0,43200,129600,0,218810,3718), -- Nakondas (40)
(25418,1,62416,8096,-3376,0,43200,129600,0,273375,3718), -- Dread Avenger Kraven (44)
(25420,1,42032,24128,-4704,0,43200,129600,0,335987,3718), -- Orfen's Handmaiden (48)
(25423,1,113600,47120,-4640,0,43200,129600,0,539706,3718), -- Fairy Queen Timiniel (61)
(25426,1,-18048,-101264,-2112,0,43200,129600,0,103092,3718), -- Betrayer Of Urutu Freki (25)
(25429,1,172064,-214752,-3565,0,43200,129600,0,103092,3718), -- Mammon Collector Talos (25)
(25431,1,79648,18320,-5232,0,43200,129600,0,273375,3718), -- Flamestone Golem (44)
(25434,1,104096,-16896,-1803,0,43200,129600,0,451391,3718), -- Bandit Leader Barda (55)
(25437,1,67296,64128,-3723,0,43200,129600,0,576831,3718), -- Timak Orc Gosmos (45)
(25438,1,107000,92000,-2272,0,43200,129600,0,273375,3718), -- Thief Kelbar (44)
(25441,1,111440,82912,-2912,0,43200,129600,0,288415,3718), -- Evil Spirit Cyrion (45)
-- (25444,1,113232,17456,-4384,0,43200,129600,0,588136,3718), -- Enmity Ghost Ramdal (65) (ToI)
(25447,1,113200,17552,-1424,0,43200,129600,0,645953,3718), -- Immortal Savior Mardil (71)
(25450,1,113600,15104,9559,0,43200,129600,0,987470,3718), -- Cherub Galaxia (79)
(25453,1,156704,-6096,-4185,0,43200,129600,0,888658,3718), -- Meanas Anor (70)
(25456,1,133632,87072,-3623,0,43200,129600,0,352421,3718), -- Mirror Of Oblivion (49)
(25460,1,150304,67776,-3688,0,43200,129600,0,385670,3718), -- Deadman Ereve (51)
(25463,1,166288,68096,-3264,0,43200,129600,0,467209,3718), -- Harit Guardian Garangky (56)
(25467,1,186192,61472,-4160,0,43200,129600,0,576851,3718), -- Gorgolos (64)
(25470,1,186896,56276,-4576,0,43200,129600,0,598898,3718), -- Last Titan Utenus (66)
(25473,1,175712,29856,-3776,0,43200,129600,0,402319,3718), -- Grave Robber Kim (52)
(25475,1,183568,24560,-3184,0,43200,129600,0,451391,3718), -- Ghost Knight Kabed (55)
(25478,1,168288,28368,-3632,0,43200,129600,0,588136,3718), -- Shilen's Priest Hisilrome (65)
(25481,1,53517,205413,-3728,0,43200,129600,0,66938,3718), -- Magus Kenishee (53)
(25484,1,43160,220463,-3680,0,43200,129600,0,369009,3718), -- Zaken's Chief Mate Tillion (50)
(25487,1,83056,183232,-3616,0,43200,129600,0,218810,3718), -- Water Spirit Lian (40)
(25490,1,86528,216864,-3584,0,43200,129600,0,218810,3718), -- Gwindorr (40)
(25493,1,83174,254428,-10873,0,43200,129600,0,451391,3718), -- Eva's Spirit Niniel (55)
(25496,1,88300,258000,-10200,0,43200,129600,0,402319,3718), -- Fafurion's Envoy Pingolpin (52)
(25498,1,126624,174448,-3056,0,43200,129600,0,288415,3718); -- Fafurion's Henchman Istary (45)

View File

@ -1,12 +0,0 @@
DROP TABLE IF EXISTS `random_spawn`;
CREATE TABLE `random_spawn` (
`groupId` tinyint(3) unsigned NOT NULL,
`npcId` smallint(5) unsigned NOT NULL,
`count` tinyint(1) unsigned NOT NULL DEFAULT '1',
`initialDelay` int(8) NOT NULL DEFAULT '-1',
`respawnDelay` int(8) NOT NULL DEFAULT '-1',
`despawnDelay` int(8) NOT NULL DEFAULT '-1',
`broadcastSpawn` enum('true','false') NOT NULL DEFAULT 'false',
`randomSpawn` enum('true','false') NOT NULL DEFAULT 'true',
PRIMARY KEY (`groupId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

View File

@ -1,9 +0,0 @@
DROP TABLE IF EXISTS `random_spawn_loc`;
CREATE TABLE `random_spawn_loc` (
`groupId` tinyint(3) unsigned NOT NULL,
`x` mediumint(6) NOT NULL,
`y` mediumint(6) NOT NULL,
`z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`groupId`,`x`,`y`,`z`,`heading`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

File diff suppressed because it is too large Load Diff