sweetgum83/scripts/quest/20201.js

72 lines
3.3 KiB
JavaScript
Raw Normal View History

2024-01-19 08:56:28 +00:00
/*
This file is part of the OdinMS Maple Story Server
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
Matthias Butz <matze@odinms.de>
Jan Christian Meyer <vimes@odinms.de>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation version 3 as published by
the Free Software Foundation. You may not use, modify or distribute
this program under any other version of the GNU Affero General Public
License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* Author: Xterminator
NPC Name: Mihile
Map(s): Empress' Road : Ereve (130000000)
Description: Quest - Knighthood Exam: Dawn Warrior
*/
var status = -1;
function end(mode, type, selection) {
if (mode == -1) {
qm.dispose();
} else {
if (status == 0 && mode == 0) {
qm.sendNext("I guess you are not ready to tackle on the responsibilities of an official knight.");
qm.dispose();
return;
}
if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0) {
qm.sendYesNo("So you brought all of #t4032096#... Okay, I believe that your are now qualified to become an official knight. Do you want to become one?");
} else if (status == 1) {
if (qm.getPlayer().getJob().getId() == 1100 && qm.getPlayer().getRemainingSp() > ((qm.getPlayer().getLevel() - 30) * 3)) {
qm.sendNext("You have too much #bSP#k with you. Use some more on the 1st-level skill.");
qm.dispose();
} else {
if (qm.getPlayer().getJob().getId() != 1110) {
if (!qm.canHold(1142067)) {
qm.sendNext("If you wish to receive the medal befitting the title, you may want to make some room in your equipment inventory.");
qm.dispose();
return;
}
qm.gainItem(4032096, -30);
qm.gainItem(1142067, 1);
const Job = Java.type('client.Job');
qm.getPlayer().changeJob(Job.DAWNWARRIOR2);
qm.completeQuest();
}
qm.sendNext("You are a Knight-in-Training no more. You are now an official knight of the Cygnus Knights.");
}
} else if (status == 2) {
qm.sendNextPrev("I have given you some #bSP#k. I have also given you a number of skills for a Dawn Warrior that's only available to knights, so I want you to work on it and hopefully cultivate it as much as your soul.");
} else if (status == 3) {
qm.sendPrev("Now that you are officially a Cygnus Knight, act like one so you will keep the Empress's name up high.");
} else if (status == 4) {
qm.dispose();
}
}
}