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

40
scripts/quest/21017.js Normal file
View File

@@ -0,0 +1,40 @@
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("It seems like you're warmed up now. This is when rigorous training can really help you build a strong foundation. Let's proceed with the Basic Training, shall we?", 8);
} else if (status == 1) {
qm.sendNextPrev("Go defeat some #r#o0100133#s#k in #b#m140020200##k this time. I think about #r20#k should do it. Go on ahead and... Hm? Do you have something you'd like to say?", 8);
} else if (status == 2) {
qm.sendNextPrev("Isn't the number getting bigger and bigger?", 2);
} else if (status == 3) {
qm.sendNextPrev("Of course it is. What, are you not happy with 20? Would you like to defeat 100 of them instead? Oh, how about 999 of them? Someone in Sleepywood would be able to do it easily. After all, we are training...", 8);
} else if (status == 4) {
qm.sendNextPrev("Oh no, no, no. Twenty is plenty.", 2);
} else if (status == 5) {
qm.sendAcceptDecline("You don't have to be so modest. I understand your desire to quickly become the hero you once were. This sort of attitude is what makes you a hero.");
} else if (status == 6) {
if (mode == 0 && type == 15) {
qm.sendNext("#b(You declined out of fear, but it's not like you can run away like this. Take a big breath, calm down, and try again.)#k", 2);
qm.dispose();
} else {
if (!qm.isQuestStarted(21017)) {
qm.forceStartQuest();
}
qm.sendNext("#b(You accepted, thinking you might end up having to 999 of them if you let her keep talking.)#k", 2);
}
} else if (status == 7) {
qm.sendNextPrev("Please go ahead and slay 20 #o0100133#s.", 8);
} else if (status == 8) {
qm.showInfo("Effect/OnUserEff.img/guideEffect/aranTutorial/tutorialArrow3");
qm.dispose();
}
}