54 lines
2.6 KiB
JavaScript
54 lines
2.6 KiB
JavaScript
/*
|
|
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 : Generic
|
|
NPC Name: Kiku
|
|
Map(s): Empress' Road : Training Forest I
|
|
Description: Quest - The Path of a Knight
|
|
Quest ID : 20000
|
|
*/
|
|
|
|
var status = -1;
|
|
var choice1;
|
|
|
|
function start(mode, type, selection) {
|
|
if (mode < 1) {
|
|
qm.dispose();
|
|
} else if (mode > 0) {
|
|
status++;
|
|
}
|
|
if (status == 0) {
|
|
qm.sendSimple("Are you ready to take on a mission? If you can't pass this test, then you won't be able to call yourself a real Knight. Are you sure you can do this? If you are afraid to do this, let me know. I won't tell Neinheart. \r\n #L0#I'll try this later.#l \r\n #L1#I'm not afraid. Let's do this.#l");
|
|
} else if (status == 1) {
|
|
if (selection == 0) {
|
|
qm.sendNext("If you call yourself a Knight, then do not hesitate. Show everyone how much courage you have in you.");
|
|
qm.dispose();
|
|
} else if (selection == 1) {
|
|
choice1 = selection;
|
|
qm.sendSimple("I'm glad you didn't run away, but... are you sure you want to become a Knight-in-Training? What I am asking is whether you're okay with being a Cygnus Knight, and therefore being tied to the Empress at all times? She may be an Empress, but she's also still just a kid. Are you sure you can fight for her? I won't let Neinheart know so just tell me what you really feel. \r\n #L2#If the Empress wants peace in the Maple World, then I'm down for whatever.#l \r\n #L3#As long as I can become a knight I'll endure whatever #l");
|
|
qm.forceStartQuest();
|
|
qm.forceCompleteQuest();
|
|
}
|
|
} else if (status == 2) {
|
|
qm.dispose();
|
|
}
|
|
} |