-
Enthusiast
Quest Items
So I was going through the low level class quest lines for the hats (level 18 questline I believe)
Most of the quests were working but some of the mobs did not drop the required items.
So I went into mySQL and made a script file to add the items.
USE `maplesolaxia`;
INSERT INTO `drop_data`(`id`, `dropperid`, `itemid`, `minimum_quantity`, `maximum_quantity`, `questid`, `chance`) VALUES
(13004, 9400614, 4001352, 1, 1, 28205, 10000),
(13005, 1110100, 4001352, 1, 1, 28205, 10000),
(13006, 1210101, 4001352, 1, 1, 28205, 10000)
ON DUPLICATE KEY UPDATE
`id` = VALUES(`id`),
`dropperid`= VALUES(`dropperid`),
`itemid`= VALUES(`itemid`),
`minimum_quantity`= VALUES(`minimum_quantity`),
`maximum_quantity`= VALUES(`maximum_quantity`),
`questid`= VALUES(`questid`),
`chance`= VALUES(`chance`);
This made the item drop without issue but even after I finished the quest it is still dropping.
-