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/2573.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("Greetings! Isn't this just the perfect weather for a journey? I'm Skipper, the captain of this fine ship. You must be a new Explorer, eh? Nice to meet you.");
} else if (status == 1) {
qm.sendAcceptDecline("We're not quite ready to leave, so feel free to look around the ship while we're waiting.");
} else if (status == 2) {
if (mode == 0) {//decline
qm.sendNext("Hey, take it easy! Sometimes you just gotta wait.");
} else {
qm.sendNext("Looks like we're all set! I think this is going to be a great voyage. Let's get underway.");
qm.warp(3000000);
qm.forceCompleteQuest();
}
qm.dispose();
}
}