58 lines
1.8 KiB
JavaScript
58 lines
1.8 KiB
JavaScript
/* ===========================================================
|
|
@author Resonance
|
|
NPC Name: Scarrs
|
|
Map(s): Mushroom Castle: Corner of Mushroom Forest(106020000)
|
|
Description: Quest - Killer Mushroom Spores(2)
|
|
=============================================================
|
|
Version 1.0 - Script Done.(18/7/2010)
|
|
=============================================================
|
|
*/
|
|
|
|
importPackage(Packages.client);
|
|
|
|
var status = -1;
|
|
|
|
function start(mode, type, selection) {
|
|
status++;
|
|
if (mode != 1) {
|
|
if(type == 1 && mode == 0)
|
|
status -= 2;
|
|
else{
|
|
qm.sendOk("I understand it's not an easy task, but I can't make #bKiller Mushroom Spores#k without them. Please reconsider.");
|
|
qm.dispose();
|
|
return;
|
|
}
|
|
}
|
|
if (status == 0)
|
|
qm.sendAcceptDecline("Hmmm... I looked into the making of the Spores while you were gathering up the Poison Mushroom Caps, and realised that we'll need more materials for it. I want you to gather up one more set of items. Can you do it?");
|
|
if (status == 1){
|
|
qm.forceStartQuest();
|
|
qm.sendOk("Okay, I want you to defeat the Regenade Spores and bring back #b50 Mutated Spores#k in return.");
|
|
qm.dispose();
|
|
}
|
|
}
|
|
|
|
function end(mode, type, selection) {
|
|
status++;
|
|
if (mode != 1) {
|
|
if(type == 1 && mode == 0)
|
|
status -= 2;
|
|
else{
|
|
qm.dispose();
|
|
return;
|
|
}
|
|
}
|
|
if (status == 0)
|
|
qm.sendOk("Did you gather up all the necessary ingredients for it?")
|
|
if (status == 1){
|
|
qm.gainExp(11500);
|
|
qm.gainItem(4000499, -50);
|
|
qm.sendNext("Okay, these should be enough for me to make the #bKiller Mushroom Spores.#k Please hold on for a bit.");
|
|
qm.forceCompleteQuest();
|
|
qm.gainItem(2430014, 1);
|
|
} if(status == 2){
|
|
qm.sendPrev("Okay, here are the Killer Mushroom Spores. Hopefully this will be enough for you to save our princess and help regain our kingdom. Good luck!");
|
|
qm.dispose();
|
|
}
|
|
}
|
|
|