Source for my MapleSolaxiaV2 (v83 MapleStory).
This commit is contained in:
ronancpl
2015-11-02 23:17:21 -02:00
parent 324982e94f
commit 972517e7b2
1675 changed files with 261831 additions and 0 deletions

26
scripts/quest/22504.js Normal file
View File

@@ -0,0 +1,26 @@
var status = -1;
function start(mode, type, selection) {
if (mode == 0 && type == 0) {
status--;
} else if (mode == -1) {
qm.dispose();
return;
} else {
status++;
}
if (status == 0) {
qm.sendNext("Ugh. This isn't going to work. I need something else. No plants. No meat. What, you have no idea? But you're the master, and you're older than me, too. You must know what'd be good for me!");
} else if (status == 1) {
qm.sendNextPrev("#bBut I don't. It's not like age has anything to do with this...", 2);
} else if (status == 2) {
qm.sendAcceptDecline("Since you're older, you must be more experienced in the world, too. Makes sense that you'd know more than me. Oh, fine. I'll ask someone who's even older than you, master!");
} else if (status == 3) {
if (mode == 0) {
qm.sendNext("No use trying to find an answer to this on my own. I'd better look for #bsomeone older and wiser than master#k!");
} else {
qm.forceStartQuest();
qm.sendNext("#b#b(You already asked Dad once, but you don't have any better ideas. Time to ask him again!)");
}
}
}