26 lines
1.2 KiB
JavaScript
26 lines
1.2 KiB
JavaScript
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.sendAcceptDecline("Shall we continue with your Basic Training? Before accepting, please make sure you have properly equipped your sword and your skills and potions are readily accessible.");
|
|
} else if (status == 1) {
|
|
if (mode == 0) {
|
|
qm.sendNext("Are you not ready to hunt the #o0100132#s yet? Always proceed if and only if you are fully ready. There's nothing worse than engaging in battles without sufficient preparation.");
|
|
qm.dispose();
|
|
} else {
|
|
qm.forceStartQuest();
|
|
qm.sendNext("Alright. This time, let's have you defeat #r#o0100132#s#k, which are slightly more powerful than #o0100131#s. Head over to #b#m140020100##k and defeat #r15#k of them. That should help you build your strength. Alright! Let's do this!", 1);
|
|
}
|
|
} else if (status == 2) {
|
|
qm.showInfo("Effect/OnUserEff.img/guideEffect/aranTutorial/tutorialArrow3");
|
|
qm.dispose();
|
|
}
|
|
} |