Hired Merchant & Player shop fixes + Owl of Minerva
Thanks to BenjixD DietStory's dev team, many bugs found by them have been patched (pirate quests, missing drop data, fly command, etc). Implemented Owl of Minerva. Fixed many issues with Hired Merchant and Player Shops. Fixed an error with the slot checking system. Added Wish Tickets (circa-2006 GMS event) to be dropped on AmoriaPQ.
This commit is contained in:
@@ -19773,8 +19773,13 @@ USE `maplesolaxia`;
|
||||
(9400300, 2290045, 1, 1, 0, 10000),
|
||||
(9400121, 2290081, 1, 1, 0, 10000),
|
||||
(9400014, 2290087, 1, 1, 0, 10000),
|
||||
(9400120, 2290109, 1, 1, 0, 10000);
|
||||
|
||||
(9400120, 2290109, 1, 1, 0, 10000),
|
||||
(3210100, 4001000, 1, 1, 2017, 20000),
|
||||
(4300013, 4000538, 1, 1, 2288, 400000),
|
||||
(2130100, 4001367, 1, 1, 28257, 10000),
|
||||
(1110100, 4001369, 1, 1, 28259, 10000),
|
||||
(1210101, 4001370, 1, 1, 28260, 10000),
|
||||
(1110101, 4001371, 1, 1, 28261, 10000);
|
||||
# (dropperid, itemid, minqty, maxqty, questid, chance)
|
||||
|
||||
# delete item drops from other mobs named Freezer
|
||||
@@ -21078,6 +21083,29 @@ USE `maplesolaxia`;
|
||||
(9102001, 2020002, 2, -1),
|
||||
(2002018, 4161014, 1, 3099);
|
||||
|
||||
# adding wish tickets on APQ boxes
|
||||
INSERT INTO `reactordrops` (`reactorid`, `itemid`, `chance`, `questid`) VALUES
|
||||
(6702003, 4031543, 1, -1),
|
||||
(6702003, 4031544, 2, -1),
|
||||
(6702004, 4031544, 1, -1),
|
||||
(6702004, 4031545, 2, -1),
|
||||
(6702005, 4031543, 2, -1),
|
||||
(6702005, 4031545, 1, -1),
|
||||
(6702006, 4031543, 1, -1),
|
||||
(6702006, 4031544, 2, -1),
|
||||
(6702007, 4031544, 1, -1),
|
||||
(6702007, 4031545, 2, -1),
|
||||
(6702008, 4031543, 2, -1),
|
||||
(6702008, 4031545, 1, -1),
|
||||
(6702009, 4031543, 1, -1),
|
||||
(6702009, 4031544, 2, -1),
|
||||
(6702010, 4031544, 1, -1),
|
||||
(6702010, 4031545, 2, -1),
|
||||
(6702011, 4031543, 1, -1),
|
||||
(6702011, 4031545, 2, -1),
|
||||
(6702012, 4031543, 2, -1),
|
||||
(6702012, 4031544, 1, -1);
|
||||
|
||||
# updates info for all cards on monster book
|
||||
DROP TABLE `monstercarddata`;
|
||||
CREATE TABLE IF NOT EXISTS `monstercarddata` (
|
||||
|
||||
@@ -222,4 +222,65 @@ INSERT INTO `shopitems` ( `shopid`, `itemid`, `price`, `position`) VALUES
|
||||
(1337, 2043712, 1, 81),
|
||||
(1337, 2340000, 1, 82),
|
||||
(1337, 2040807, 1, 83),
|
||||
(1337, 2210032, 1, 84);
|
||||
(1337, 2210032, 1, 84);
|
||||
|
||||
# Thanks to DietStory dev team
|
||||
INSERT INTO `shopitems` ( `shopid`, `itemid`, `price`, `position`) VALUES
|
||||
(1200001, 3010001, 1000, 0, 1),
|
||||
(1200001, 1092003, 2000, 0, 2),
|
||||
(1200001, 1072063, 10000, 0, 3),
|
||||
(1200001, 1072062, 10000, 0, 4),
|
||||
(1200001, 1072017, 10000, 0, 5).
|
||||
(1200001, 1072049, 5000, 0, 6),
|
||||
(1200001, 1072048, 5000, 0, 7),
|
||||
(1200001, 1072008, 5000, 0, 8),
|
||||
(1200001, 1072005, 50, 0, 9),
|
||||
(1200001, 1072038, 50, 0, 10),
|
||||
(1200001, 1072037, 50, 0, 11),
|
||||
(1200001, 1072001, 50, 0, 12),
|
||||
(1200001, 1062001, 4800, 0, 13),
|
||||
(1200001, 1062000, 4800, 0, 14),
|
||||
(1200001, 1060004, 2800, 0, 15),
|
||||
(1200001, 1060007, 1000, 0, 16),
|
||||
(1200001, 1041012, 3000, 0, 17),
|
||||
(1200001, 1041004, 3000, 0, 18),
|
||||
(1200001, 1040014, 3000, 0, 19),
|
||||
(1200001, 1040013, 3000, 0, 20),
|
||||
(1200001, 1002001, 3000, 0, 21),
|
||||
(1200001, 1002019, 2000, 0, 22),
|
||||
(1200001, 1002134, 800, 0, 23),
|
||||
(1200001, 1002133, 800, 0, 24),
|
||||
(1200001, 1002132, 800, 0, 25),
|
||||
(1200001, 1002069, 450, 0, 26),
|
||||
(1200001, 1002068, 450, 0, 27),
|
||||
(1200001, 1002067, 450, 0, 28),
|
||||
(1200001, 1002066, 450, 0, 29),
|
||||
(1200001, 1002014, 1000, 0, 30),
|
||||
(1200001, 1002008, 500, 0, 31),
|
||||
(1200001, 1332007, 1000, 0, 32),
|
||||
(1200001, 1312000, 3000, 0, 33),
|
||||
(1200001, 1302007, 3000, 0, 34),
|
||||
(1200001, 1322005, 50, 0, 35),
|
||||
(1200001, 1312004, 50, 0, 36),
|
||||
(1200001, 1302000, 50, 0, 37),
|
||||
(1203590, 2330000, 600, 0, 104),
|
||||
(1203590, 2070000, 500, 0, 108),
|
||||
(1203590, 2061000, 1, 0, 120),
|
||||
(1203590, 2060000, 1, 0, 124),
|
||||
(1203590, 2030000, 400, 0, 132),
|
||||
(1203590, 2020028, 3000, 0, 136),
|
||||
(1203590, 2010004, 310, 0, 140),
|
||||
(1203590, 2010003, 100, 0, 144),
|
||||
(1203590, 2010001, 106, 0, 148),
|
||||
(1203590, 2010002, 50, 0, 152),
|
||||
(1203590, 2010000, 30, 0, 156),
|
||||
(1203590, 2002005, 500, 0, 160),
|
||||
(1203590, 2002004, 500, 0, 164),
|
||||
(1203590, 2002002, 500, 0, 168),
|
||||
(1203590, 2002001, 400, 0, 172),
|
||||
(1203590, 2002000, 500, 0, 176),
|
||||
(1203590, 2000006, 620, 0, 180),
|
||||
(1203590, 2000003, 200, 0, 184),
|
||||
(1203590, 2000002, 320, 0, 188),
|
||||
(1203590, 2000001, 160, 0, 192),
|
||||
(1203590, 2000000, 50, 0, 196);
|
||||
Reference in New Issue
Block a user