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.
21 lines
515 B
JavaScript
21 lines
515 B
JavaScript
/*
|
|
Author: Kevin
|
|
Quest: Zombie Mushroom Signal 3 (2251)
|
|
NPC: The Rememberer (1061011)
|
|
Item: Recording Charm (4032399)
|
|
*/
|
|
|
|
function end(mode, type, selection) {
|
|
|
|
if(!qm.haveItem(4032399, 20)) {
|
|
qm.sendOk("Please bring me 20 #b#t4032399##k... #i4032399#");
|
|
}
|
|
else {
|
|
qm.gainItem(4032399, -20);
|
|
qm.sendOk("Oh, you brought 20 #b#t4032399##k! Thank you.");
|
|
qm.gainExp(8000 * qm.getPlayer().getExpRate());
|
|
qm.forceCompleteQuest();
|
|
}
|
|
|
|
qm.dispose();
|
|
} |