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:
21
scripts/quest/2251.js
Normal file
21
scripts/quest/2251.js
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user