Merge branch 'master' of https://github.com/ronancpl/HeavenMS into credits_update

This commit is contained in:
ronancpl
2019-11-14 22:35:43 -03:00
864 changed files with 20650 additions and 11188 deletions

View File

@@ -25,9 +25,10 @@ function start(mode, type, selection) {
}
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){
else 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.");
} else if (status == 2){
qm.dispose();
}
}
@@ -44,15 +45,22 @@ function end(mode, type, selection) {
}
if (status == 0)
qm.sendOk("Did you gather up all the necessary ingredients for it?")
if (status == 1){
qm.gainExp(11500);
else if (status == 1){
if (!qm.haveItem(4000499, 50)) {
qm.sendOk("Please gather all the ingredients first.");
status = 2;
return;
}
qm.sendNext("These should be enough for me to make the #bKiller Mushroom Spores.#k Please hold on for a bit.");
} else if(status == 2){
qm.sendOk("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!");
} else if(status == 3) {
qm.forceCompleteQuest();
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();
}
qm.dispose();
}
}