Index: scripts/globals/bcnm.lua =================================================================== --- scripts/globals/bcnm.lua (revision 1637) +++ scripts/globals/bcnm.lua (working copy) @@ -6,9 +6,9 @@ --array to map (for each zone) the item id of the valid trade item with the bcnmid in the database --e.g. zone,{itemid,bcnmid,itemid,bcnmid,itemid,bcnmid} -- DO NOT INCLUDE MAAT FIGHTS -itemid_bcnmid_map = {139,{0,0}, -- Horlais Peak - 144,{1166,68}, -- Waughroon Shrine - 146,{0,0}, -- Balgas Dias +itemid_bcnmid_map = {139,{1553,11}, -- Horlais Peak + 144,{1166,68,1178,81,1553,76}, -- Waughroon Shrine + 146,{1553,107}, -- Balgas Dias 168,{0,0}, -- Chamber of Oracles 170,{0,0}, -- Full Moon Fountain 201,{1546,418}, -- Cloister of Gales @@ -25,10 +25,10 @@ -- The BCNMID is found via the database. -- The paramid is a bitmask which you need to find out. Being a bitmask, it will be one of: -- 0,1,2,3,4,5,... -bcnmid_param_map = {139,{0,0,5,5,6,6,7,7}, +bcnmid_param_map = {139,{0,0,5,5,6,6,7,7,11,11}, 140,{32,0,33,1}, - 144,{64,0,68,4,70,6,71,7,72,8}, - 146,{96,0,101,5,102,6,103,7}, + 144,{64,0,68,4,70,6,71,7,72,8,81,17,76,12}, + 146,{96,0,101,5,102,6,103,7,107,11}, 163,{128,0}, 165,{160,0}, 168,{192,0,194,2,195,3,196,4}, @@ -179,7 +179,7 @@ return false; else id = player:getVar("trade_bcnmid"); - if(id == 68 or id == 418 or id == 450 or id == 482 or id == 545 or id == 578 or id == 609) then + if(id == 68 or id == 418 or id == 450 or id == 482 or id == 545 or id == 578 or id == 609 or id == 81 or id == 76 or id == 107 or id == 11) then player:tradeComplete(); end return true; @@ -265,6 +265,12 @@ -- AF3 SAM condition elseif(item == 1166 and player:getVar("aThiefinNorgCS") == 6) then questTimelineOK = 1; + elseif(item == 1178) then + questTimelineOK = 1; + -- KSNM30 + elseif(item == 1553) then + questTimelineOK = 1; + -- KSNM99 end if(questTimelineOK == 1) then Index: scripts/zones/Balgas_Dais/bcnms/early_bird_catches_the_wyrm.lua =================================================================== --- scripts/zones/Balgas_Dais/bcnms/early_bird_catches_the_wyrm.lua (revision 0) +++ scripts/zones/Balgas_Dais/bcnms/early_bird_catches_the_wyrm.lua (revision 0) @@ -0,0 +1,58 @@ +----------------------------------- +-- Area: Balgas_Dais +-- Name: early bird catches the wyrm +----------------------------------- +package.loaded["scripts/zones/Waughroon_Shrine/TextIDs"] = nil; +----------------------------------- + +require("scripts/globals/titles"); +require("scripts/globals/quests"); +require("scripts/zones/Waughroon_Shrine/TextIDs"); + +----------------------------------- +-- EXAMPLE SCRIPT +-- +-- What should go here: +-- giving key items, playing ENDING cutscenes +-- +-- What should NOT go here: +-- Handling of "battlefield" status, spawning of monsters, +-- putting loot into treasure pool, +-- enforcing ANY rules (SJ/number of people/etc), moving +-- chars around, playing entrance CSes (entrance CSes go in bcnm.lua) + +-- After registering the BCNM via bcnmRegister(bcnmid) +function OnBcnmRegister(player,instance) +end; + +-- Physically entering the BCNM via bcnmEnter(bcnmid) +function OnBcnmEnter(player,instance) +end; + +-- Leaving the BCNM by every mean possible, given by the LeaveCode +-- 1=Select Exit on circle +-- 2=Winning the BC +-- 3=Disconnected or warped out +-- 4=Losing the BC +-- via bcnmLeave(1) or bcnmLeave(2). LeaveCodes 3 and 4 are called +-- from the core when a player disconnects or the time limit is up, etc + +function OnBcnmLeave(player,instance,leavecode) +-- print("leave code "..leavecode); + + + if(leavecode == 2) then -- play end CS. Need time and battle id for record keeping + storage + player:startEvent(0x7d01,1,1,1,instance:getTimeInside(),1,1,0); + elseif(leavecode == 4) then + player:startEvent(0x7d02); + end + +end; + +function onEventUpdate(player,csid,option) +-- print("bc update csid "..csid.." and option "..option); +end; + +function onEventFinish(player,csid,option) +-- print("bc finish csid "..csid.." and option "..option); +end; \ No newline at end of file Index: scripts/zones/Balgas_Dais/mobs/Wyrm.lua =================================================================== --- scripts/zones/Balgas_Dais/mobs/Wyrm.lua (revision 0) +++ scripts/zones/Balgas_Dais/mobs/Wyrm.lua (revision 0) @@ -0,0 +1,19 @@ +----------------------------------- +-- Area: Balga's Dais +-- NPC: Wyrm +-- KSNM99 +----------------------------------- + +----------------------------------- +-- onMobSpawn Action +----------------------------------- + +function OnMobSpawn(mob) +end; + +----------------------------------- +-- onMobDeath Action +----------------------------------- + +function onMobDeath(mob,killer) +end; \ No newline at end of file Index: scripts/zones/Horlais_Peak/bcnms/horns_of_war.lua =================================================================== --- scripts/zones/Horlais_Peak/bcnms/horns_of_war.lua (revision 0) +++ scripts/zones/Horlais_Peak/bcnms/horns_of_war.lua (revision 0) @@ -0,0 +1,59 @@ +----------------------------------- +-- Area: Horlias peak +-- Name: horns of war +-- KSNM99 +----------------------------------- +package.loaded["scripts/zones/Waughroon_Shrine/TextIDs"] = nil; +----------------------------------- + +require("scripts/globals/titles"); +require("scripts/globals/quests"); +require("scripts/zones/Waughroon_Shrine/TextIDs"); + +----------------------------------- +-- EXAMPLE SCRIPT +-- +-- What should go here: +-- giving key items, playing ENDING cutscenes +-- +-- What should NOT go here: +-- Handling of "battlefield" status, spawning of monsters, +-- putting loot into treasure pool, +-- enforcing ANY rules (SJ/number of people/etc), moving +-- chars around, playing entrance CSes (entrance CSes go in bcnm.lua) + +-- After registering the BCNM via bcnmRegister(bcnmid) +function OnBcnmRegister(player,instance) +end; + +-- Physically entering the BCNM via bcnmEnter(bcnmid) +function OnBcnmEnter(player,instance) +end; + +-- Leaving the BCNM by every mean possible, given by the LeaveCode +-- 1=Select Exit on circle +-- 2=Winning the BC +-- 3=Disconnected or warped out +-- 4=Losing the BC +-- via bcnmLeave(1) or bcnmLeave(2). LeaveCodes 3 and 4 are called +-- from the core when a player disconnects or the time limit is up, etc + +function OnBcnmLeave(player,instance,leavecode) +-- print("leave code "..leavecode); + + + if(leavecode == 2) then -- play end CS. Need time and battle id for record keeping + storage + player:startEvent(0x7d01,1,1,1,instance:getTimeInside(),1,1,0); + elseif(leavecode == 4) then + player:startEvent(0x7d02); + end + +end; + +function onEventUpdate(player,csid,option) +-- print("bc update csid "..csid.." and option "..option); +end; + +function onEventFinish(player,csid,option) +-- print("bc finish csid "..csid.." and option "..option); +end; \ No newline at end of file Index: scripts/zones/Horlais_Peak/mobs/Chlevnik.lua =================================================================== --- scripts/zones/Horlais_Peak/mobs/Chlevnik.lua (revision 0) +++ scripts/zones/Horlais_Peak/mobs/Chlevnik.lua (revision 0) @@ -0,0 +1,19 @@ +----------------------------------- +-- Area: Horlais Peak +-- NPC: Chlevnik +-- KSNM99 +----------------------------------- + +----------------------------------- +-- onMobSpawn Action +----------------------------------- + +function OnMobSpawn(mob) +end; + +----------------------------------- +-- onMobDeath Action +----------------------------------- + +function onMobDeath(mob,killer) +end; \ No newline at end of file Index: scripts/zones/Waughroon_Shrine/bcnms/hills_are_alive.lua =================================================================== --- scripts/zones/Waughroon_Shrine/bcnms/hills_are_alive.lua (revision 0) +++ scripts/zones/Waughroon_Shrine/bcnms/hills_are_alive.lua (revision 0) @@ -0,0 +1,59 @@ +----------------------------------- +-- Area: Waughroon_Shrine +-- Name: Hills are Alive +-- KSNM99 +----------------------------------- +package.loaded["scripts/zones/Waughroon_Shrine/TextIDs"] = nil; +----------------------------------- + +require("scripts/globals/titles"); +require("scripts/globals/quests"); +require("scripts/zones/Waughroon_Shrine/TextIDs"); + +----------------------------------- +-- EXAMPLE SCRIPT +-- +-- What should go here: +-- giving key items, playing ENDING cutscenes +-- +-- What should NOT go here: +-- Handling of "battlefield" status, spawning of monsters, +-- putting loot into treasure pool, +-- enforcing ANY rules (SJ/number of people/etc), moving +-- chars around, playing entrance CSes (entrance CSes go in bcnm.lua) + +-- After registering the BCNM via bcnmRegister(bcnmid) +function OnBcnmRegister(player,instance) +end; + +-- Physically entering the BCNM via bcnmEnter(bcnmid) +function OnBcnmEnter(player,instance) +end; + +-- Leaving the BCNM by every mean possible, given by the LeaveCode +-- 1=Select Exit on circle +-- 2=Winning the BC +-- 3=Disconnected or warped out +-- 4=Losing the BC +-- via bcnmLeave(1) or bcnmLeave(2). LeaveCodes 3 and 4 are called +-- from the core when a player disconnects or the time limit is up, etc + +function OnBcnmLeave(player,instance,leavecode) +-- print("leave code "..leavecode); + + + if(leavecode == 2) then -- play end CS. Need time and battle id for record keeping + storage + player:startEvent(0x7d01,1,1,1,instance:getTimeInside(),1,1,0); + elseif(leavecode == 4) then + player:startEvent(0x7d02); + end + +end; + +function onEventUpdate(player,csid,option) +-- print("bc update csid "..csid.." and option "..option); +end; + +function onEventFinish(player,csid,option) +-- print("bc finish csid "..csid.." and option "..option); +end; \ No newline at end of file Index: scripts/zones/Waughroon_Shrine/bcnms/operation_desert_swarm.lua =================================================================== --- scripts/zones/Waughroon_Shrine/bcnms/operation_desert_swarm.lua (revision 0) +++ scripts/zones/Waughroon_Shrine/bcnms/operation_desert_swarm.lua (revision 0) @@ -0,0 +1,58 @@ +----------------------------------- +-- Area: Waughroon_Shrine +-- Name: Operation desert swarm +----------------------------------- +package.loaded["scripts/zones/Waughroon_Shrine/TextIDs"] = nil; +----------------------------------- + +require("scripts/globals/titles"); +require("scripts/globals/quests"); +require("scripts/zones/Waughroon_Shrine/TextIDs"); + +----------------------------------- +-- EXAMPLE SCRIPT +-- +-- What should go here: +-- giving key items, playing ENDING cutscenes +-- +-- What should NOT go here: +-- Handling of "battlefield" status, spawning of monsters, +-- putting loot into treasure pool, +-- enforcing ANY rules (SJ/number of people/etc), moving +-- chars around, playing entrance CSes (entrance CSes go in bcnm.lua) + +-- After registering the BCNM via bcnmRegister(bcnmid) +function OnBcnmRegister(player,instance) +end; + +-- Physically entering the BCNM via bcnmEnter(bcnmid) +function OnBcnmEnter(player,instance) +end; + +-- Leaving the BCNM by every mean possible, given by the LeaveCode +-- 1=Select Exit on circle +-- 2=Winning the BC +-- 3=Disconnected or warped out +-- 4=Losing the BC +-- via bcnmLeave(1) or bcnmLeave(2). LeaveCodes 3 and 4 are called +-- from the core when a player disconnects or the time limit is up, etc + +function OnBcnmLeave(player,instance,leavecode) +-- print("leave code "..leavecode); + + + if(leavecode == 2) then -- play end CS. Need time and battle id for record keeping + storage + player:startEvent(0x7d01,1,1,1,instance:getTimeInside(),1,1,0); + elseif(leavecode == 4) then + player:startEvent(0x7d02); + end + +end; + +function onEventUpdate(player,csid,option) +-- print("bc update csid "..csid.." and option "..option); +end; + +function onEventFinish(player,csid,option) +-- print("bc finish csid "..csid.." and option "..option); +end; \ No newline at end of file Index: scripts/zones/Waughroon_Shrine/mobs/Platoon_Scorpion.lua =================================================================== --- scripts/zones/Waughroon_Shrine/mobs/Platoon_Scorpion.lua (revision 0) +++ scripts/zones/Waughroon_Shrine/mobs/Platoon_Scorpion.lua (revision 0) @@ -0,0 +1,19 @@ +----------------------------------- +-- Area: Waughroon Shrine +-- NPC: Platoon Scorpion +----------------------------------- + + +----------------------------------- +-- onMobSpawn Action +----------------------------------- + +function OnMobSpawn(mob) +end; + +----------------------------------- +-- onMobDeath Action +----------------------------------- + +function onMobDeath(mob,killer) +end; \ No newline at end of file Index: scripts/zones/Waughroon_Shrine/mobs/Tartaruga_Gigante.lua =================================================================== --- scripts/zones/Waughroon_Shrine/mobs/Tartaruga_Gigante.lua (revision 0) +++ scripts/zones/Waughroon_Shrine/mobs/Tartaruga_Gigante.lua (revision 0) @@ -0,0 +1,19 @@ +----------------------------------- +-- Area: Waughroon Shrine +-- NPC: Tartaruga Gigante +----------------------------------- + + +----------------------------------- +-- onMobSpawn Action +----------------------------------- + +function OnMobSpawn(mob) +end; + +----------------------------------- +-- onMobDeath Action +----------------------------------- + +function onMobDeath(mob,killer) +end; \ No newline at end of file Index: scripts/zones/Waughroon_Shrine/npcs/Burning_Circle.lua =================================================================== --- scripts/zones/Waughroon_Shrine/npcs/Burning_Circle.lua (revision 1637) +++ scripts/zones/Waughroon_Shrine/npcs/Burning_Circle.lua (working copy) @@ -24,16 +24,21 @@ ---- 6: Shattering Stars (RDM) ---- 7: Shattering Stars (THF) ---- 8: Shattering Stars (BST) - ---- 9: - ---- 10: - ---- 11: - ---- 12: - ---- 13: - ---- 14: - ---- 15: - ---- 16: - ---- 17: + ---- 9: Birds of the feather + ---- 10: Crustacean Conundrum + ---- 11: Grove Gardians + ---- 12: The Hills are alive + ---- 13: Royal Jelly + ---- 14: The Final Bout + ---- 15: Up in arms + ---- 16: Copy Cat + ---- 17: Operation Desert Swarm + ---- 18: Prehistoric Pigeons + ---- 19: The Palborough Project + ---- 20: Shell Shocked + ---- 21: Beyond infinity + ----------------------------------- -- onTrade Action ----------------------------------- Index: sql/bcnm_instance.sql =================================================================== --- sql/bcnm_instance.sql (revision 1637) +++ sql/bcnm_instance.sql (working copy) @@ -44,6 +44,9 @@ INSERT INTO `bcnm_instance` VALUES ('7', '1', '17346591'); INSERT INTO `bcnm_instance` VALUES ('7', '2', '17346592'); INSERT INTO `bcnm_instance` VALUES ('7', '3', '17346593'); +INSERT INTO `bcnm_instance` VALUES ('11', '1', '17346717'); +INSERT INTO `bcnm_instance` VALUES ('11', '2', '17346719'); +INSERT INTO `bcnm_instance` VALUES ('11', '3', '17346721'); -- Ghelsba Outpost INSERT INTO `bcnm_instance` VALUES ('32', '1', '17350662'); @@ -82,6 +85,27 @@ INSERT INTO `bcnm_instance` VALUES ('72', '2', '17367083'); INSERT INTO `bcnm_instance` VALUES ('72', '3', '17367084'); INSERT INTO `bcnm_instance` VALUES ('72', '3', '17367085'); +INSERT INTO `bcnm_instance` VALUES ('81', '1', '17367266'); +INSERT INTO `bcnm_instance` VALUES ('81', '1', '17367267'); +INSERT INTO `bcnm_instance` VALUES ('81', '1', '17367268'); +INSERT INTO `bcnm_instance` VALUES ('81', '1', '17367269'); +INSERT INTO `bcnm_instance` VALUES ('81', '1', '17367270'); +INSERT INTO `bcnm_instance` VALUES ('81', '1', '17367271'); +INSERT INTO `bcnm_instance` VALUES ('81', '2', '17367272'); +INSERT INTO `bcnm_instance` VALUES ('81', '2', '17367273'); +INSERT INTO `bcnm_instance` VALUES ('81', '2', '17367274'); +INSERT INTO `bcnm_instance` VALUES ('81', '2', '17367275'); +INSERT INTO `bcnm_instance` VALUES ('81', '2', '17367276'); +INSERT INTO `bcnm_instance` VALUES ('81', '2', '17367277'); +INSERT INTO `bcnm_instance` VALUES ('81', '3', '17367278'); +INSERT INTO `bcnm_instance` VALUES ('81', '3', '17367279'); +INSERT INTO `bcnm_instance` VALUES ('81', '3', '17367280'); +INSERT INTO `bcnm_instance` VALUES ('81', '3', '17367281'); +INSERT INTO `bcnm_instance` VALUES ('81', '3', '17367282'); +INSERT INTO `bcnm_instance` VALUES ('81', '3', '17367283'); +INSERT INTO `bcnm_instance` VALUES ('76', '1', '17367230'); +INSERT INTO `bcnm_instance` VALUES ('76', '2', '17367232'); +INSERT INTO `bcnm_instance` VALUES ('76', '3', '17367234'); -- Balga's Dais INSERT INTO `bcnm_instance` VALUES ('96', '1', '17375233'); @@ -102,6 +126,9 @@ INSERT INTO `bcnm_instance` VALUES ('103', '2', '17375266'); INSERT INTO `bcnm_instance` VALUES ('103', '3', '17375267'); INSERT INTO `bcnm_instance` VALUES ('103', '3', '17375268'); +INSERT INTO `bcnm_instance` VALUES ('107', '1', '17375386'); +INSERT INTO `bcnm_instance` VALUES ('107', '2', '17375388'); +INSERT INTO `bcnm_instance` VALUES ('107', '3', '17375390'); -- Sacrificial Chamber INSERT INTO `bcnm_instance` VALUES ('128', '1', '17444865'); Index: sql/mob_spawn_points.sql =================================================================== --- sql/mob_spawn_points.sql (revision 1637) +++ sql/mob_spawn_points.sql (working copy) @@ -23997,9 +23997,9 @@ INSERT INTO `mob_spawn_points` VALUES ('17346713', 'Invulnerable_Mazzgozz', '7711', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17346714', 'Undefeatable_Sappdapp', '7727', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17346715', 'Mind_s-eyed_Klugwug', '7718', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17346717', 'Chlevnik', '7697', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17346719', 'Chlevnik', '7697', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17346721', 'Chlevnik', '7697', '0.000', '0.000', '0.000', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17346717', 'Chlevnik', '7697', '-396.000', '94.000', '-63.000', '46'); +INSERT INTO `mob_spawn_points` VALUES ('17346719', 'Chlevnik', '7697', '-396.000', '94.000', '-63.000', '46'); +INSERT INTO `mob_spawn_points` VALUES ('17346721', 'Chlevnik', '7697', '-396.000', '94.000', '-63.000', '46'); INSERT INTO `mob_spawn_points` VALUES ('17346723', 'Gerjis', '7707', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17346725', 'Gerjis', '7707', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17346727', 'Gerjis', '7707', '0.000', '0.000', '0.000', '0'); @@ -25280,9 +25280,9 @@ INSERT INTO `mob_spawn_points` VALUES ('17367226', 'Bi_Fho_Jestergrin', '7827', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17367227', 'Ku_Tya_Hotblood', '7839', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17367228', 'Ea_Tho_Cruelheart', '7830', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367230', 'Tartaruga_Gigante', '7860', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367232', 'Tartaruga_Gigante', '7860', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367234', 'Tartaruga_Gigante', '7860', '0.000', '0.000', '0.000', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17367230', 'Tartaruga_Gigante', '7860', '-175.000', '60.000', '-142.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367232', 'Tartaruga_Gigante', '7860', '-175.000', '60.000', '-142.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367234', 'Tartaruga_Gigante', '7860', '-175.000', '60.000', '-142.000', '124'); INSERT INTO `mob_spawn_points` VALUES ('17367236', 'The_Waughroon_Kid', '7861', '-500.000', '-500.000', '-500.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17367238', 'The_Waughroon_Kid', '7861', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17367240', 'The_Waughroon_Kid', '7861', '0.000', '0.000', '0.000', '0'); @@ -25304,24 +25304,24 @@ INSERT INTO `mob_spawn_points` VALUES ('17367263', 'Osschaart_s_Wyvern', '7853', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17367264', 'Osschaart_s_Avatar', '7851', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17367265', 'Osschaart_s_Automaton', '7850', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367266', 'Platoon_Scorpion', '7854', '500.000', '500.000', '500.000', '127'); -INSERT INTO `mob_spawn_points` VALUES ('17367267', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367268', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367269', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367270', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367271', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367273', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367274', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367275', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367276', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367277', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367278', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367280', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367281', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367282', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367283', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367284', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17367285', 'Platoon_Scorpion', '7854', '0.000', '0.000', '0.000', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17367266', 'Platoon_Scorpion', '7854', '-175.000', '60.000', '-142.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367267', 'Platoon_Scorpion', '7854', '-175.000', '60.000', '-139.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367268', 'Platoon_Scorpion', '7854', '-175.000', '60.000', '-145.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367269', 'Platoon_Scorpion', '7854', '-172.000', '59.000', '-145.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367270', 'Platoon_Scorpion', '7854', '-172.000', '60.000', '-141.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367271', 'Platoon_Scorpion', '7854', '-171.000', '59.000', '-139.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367273', 'Platoon_Scorpion', '7854', '-175.000', '60.000', '-142.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367274', 'Platoon_Scorpion', '7854', '-175.000', '60.000', '-139.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367275', 'Platoon_Scorpion', '7854', '-175.000', '60.000', '-145.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367276', 'Platoon_Scorpion', '7854', '-172.000', '59.000', '-145.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367277', 'Platoon_Scorpion', '7854', '-172.000', '60.000', '-141.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367278', 'Platoon_Scorpion', '7854', '-171.000', '59.000', '-139.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367280', 'Platoon_Scorpion', '7854', '-175.000', '60.000', '-142.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367281', 'Platoon_Scorpion', '7854', '-175.000', '60.000', '-139.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367282', 'Platoon_Scorpion', '7854', '-175.000', '60.000', '-145.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367283', 'Platoon_Scorpion', '7854', '-172.000', '59.000', '-145.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367284', 'Platoon_Scorpion', '7854', '-172.000', '60.000', '-141.000', '124'); +INSERT INTO `mob_spawn_points` VALUES ('17367285', 'Platoon_Scorpion', '7854', '-171.000', '59.000', '-139.000', '124'); INSERT INTO `mob_spawn_points` VALUES ('17367287', 'Titanis_Max', '7865', '-500.000', '-500.000', '-500.000', '127'); INSERT INTO `mob_spawn_points` VALUES ('17367288', 'Titanis_Jax', '7864', '-500.000', '-500.000', '-500.000', '127'); INSERT INTO `mob_spawn_points` VALUES ('17367289', 'Titanis_Xax', '7866', '-500.000', '-500.000', '-500.000', '127'); @@ -25916,9 +25916,9 @@ INSERT INTO `mob_spawn_points` VALUES ('17375382', 'Gii_Jaha_the_Raucous', '7908', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17375383', 'Aa_Nawu_the_Thunderblade', '7897', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17375384', 'Yoo_Mihi_the_Haze', '7942', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17375386', 'Wyrm', '7939', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17375388', 'Wyrm', '7939', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17375390', 'Wyrm', '7939', '0.000', '0.000', '0.000', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17375386', 'Wyrm', '7939', '-139.000', '56.000', '-225.000', '194'); +INSERT INTO `mob_spawn_points` VALUES ('17375388', 'Wyrm', '7939', '-139.000', '56.000', '-225.000', '194'); +INSERT INTO `mob_spawn_points` VALUES ('17375390', 'Wyrm', '7939', '-139.000', '56.000', '-225.000', '194'); INSERT INTO `mob_spawn_points` VALUES ('17375392', 'Dromiceiomimus', '7905', '-500.000', '-500.000', '-500.000', '109'); INSERT INTO `mob_spawn_points` VALUES ('17375393', 'Dromiceiomimus', '7905', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17375395', 'Dromiceiomimus', '7905', '0.000', '0.000', '0.000', '0'); Index: sql/npc_list.sql =================================================================== --- sql/npc_list.sql (revision 1637) +++ sql/npc_list.sql (working copy) @@ -8504,45 +8504,45 @@ INSERT INTO `npc_list` VALUES ('17367059', 'Gaki', '0', '0.000', '0.000', '0.000', '0', '70', '70', '0', '0', '0', '6', '155', 0x0000E70200000000000000000000000000000000, '0', '144'); INSERT INTO `npc_list` VALUES ('17367060', 'Rasetsu', '0', '0.000', '0.000', '0.000', '0', '70', '70', '0', '0', '0', '6', '155', 0x0000E50200000000000000000000000000000000, '0', '144'); INSERT INTO `npc_list` VALUES ('17367061', 'Onki', '0', '0.000', '0.000', '0.000', '0', '70', '70', '0', '0', '0', '6', '1179', 0x0000E80200000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367089', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367093', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367097', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367101', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367105', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367109', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367113', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367117', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367121', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367138', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367155', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367172', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367182', 'Armoury_Crate', '128', '-177.315', '59.695', '-141.972', '6', '40', '40', '0', '8', '0', '6', '1155', 0x0000C00300000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367192', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367202', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367204', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367206', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367208', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367215', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367222', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367229', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367231', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367233', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367235', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367237', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367239', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367241', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367243', 'Armoury_Crate', '128', '-177.315', '59.695', '-141.972', '7', '40', '40', '0', '8', '0', '6', '1155', 0x0000C10300000000000000000000000000000000, '32', '144'); -INSERT INTO `npc_list` VALUES ('17367245', 'Armoury_Crate', '128', '22.665', '-0.302', '18.048', '7', '40', '40', '0', '8', '0', '6', '1155', 0x0000C10300000000000000000000000000000000, '32', '144'); -INSERT INTO `npc_list` VALUES ('17367247', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367249', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367255', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367261', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367272', 'Armoury_Crate', '128', '-177.315', '59.695', '-141.972', '6', '40', '40', '0', '8', '0', '6', '1155', 0x0000C10300000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367279', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367286', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367291', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367296', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); -INSERT INTO `npc_list` VALUES ('17367301', 'Armoury_Crate', '0', '0.000', '0.000', '0.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367089', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367093', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367097', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367101', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367105', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367109', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367113', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367117', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367121', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367138', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367155', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367172', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367182', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367192', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367202', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367204', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367206', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367208', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367215', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367222', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367229', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367231', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367233', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367235', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367237', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367239', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367241', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367243', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367245', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367247', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367249', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367255', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367261', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367272', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367279', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367286', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367291', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367296', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); +INSERT INTO `npc_list` VALUES ('17367301', 'Armoury_Crate', '126', '-177.000', '60.000', '-142.000', '0', '40', '40', '0', '0', '0', '6', '3', 0x0000320000000000000000000000000000000000, '0', '144'); INSERT INTO `npc_list` VALUES ('17367339', 'Burning_Circle', '0', '-339.601', '104.304', '-260.341', '1', '40', '40', '0', '0', '0', '0', '3', 0x0000340000000000000000000000000000000000, '0', '144'); INSERT INTO `npc_list` VALUES ('17367340', 'Burning_Circle', '0', '-260.800', '60.304', '-139.564', '1', '40', '40', '0', '0', '0', '0', '3', 0x0000340000000000000000000000000000000000, '0', '144'); INSERT INTO `npc_list` VALUES ('17367341', 'Burning_Circle', '0', '-60.971', '0.304', '20.262', '1', '40', '40', '0', '0', '0', '0', '3', 0x0000340000000000000000000000000000000000, '0', '144');