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

24
scripts/quest/20610.js Normal file
View File

@@ -0,0 +1,24 @@
/*
* Cygnus Skill -
*/
var status = -1;
function start(mode, type, selection) {
status++;
if (status == 0) {
qm.sendAcceptDecline("Have you been mastering your skills? I am sure you've mastered all your skills, which means... it's time for you to learn a #bnew skill#k, right?");
} else if (status == 1) {
if (mode == 0) {
qm.sendOk("Well, what you're doing right now doesn't make you look like someone that's humble. You just look complacent by doing that, and that's never a good thing.");
} else {
qm.forceStartQuest();
}
qm.dispose();
}
}
function end(mode, type, selection) {
qm.dispose();
}