sweetgum83/scripts/npc/2020013.js
2024-01-19 03:56:28 -05:00

137 lines
9.3 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/>.
*/
status = -1;
var job;
var sel;
actionx = {"Mental": false, "Physical": false};
function start() {
var jobBase = parseInt(cm.getJobId() / 100);
var jobStyle = 5;
if (!(cm.getPlayer().getLevel() >= 70 && jobBase == jobStyle && cm.getJobId() % 10 == 0)) {
if (cm.getPlayer().getLevel() >= 50 && jobBase % 10 == jobStyle) {
status++;
action(1, 0, 1);
return;
}
cm.sendNext("Hi there.");
cm.dispose();
return;
}
if (cm.haveItem(4031058)) {
actionx["Mental"] = true;
} else if (cm.haveItem(4031057)) {
actionx["Physical"] = true;
}
cm.sendSimple("Can I help you?#b" + (cm.getJobId() % 10 == 0 ? "\r\n#L0#I want to make the 3th job advancement." : "") + "\r\n#L1#Please allow me to do the Zakum Dungeon Quest.");
}
function action(mode, type, selection) {
status++;
if (mode == 0 && type == 0) {
status -= 2;
} else if (mode != 1 || (status > 2 && !actionx["Mental"]) || status > 3) {
if (mode == 0 && type == 1) {
cm.sendNext("Make up your mind.");
}
cm.dispose();
return;
}
if (actionx["Mental"]) {
if (status == 0) {
cm.sendNext("Great job completing the mental part of the test. You have wisely answered all the questions correctly. I must say, I am quite impressed with the level of wisdom you have displayed there. Please hand me the necklace first, before we take on the next step.");
} else if (status == 1) {
cm.sendYesNo("Okay! Now, you'll be transformed into a much more powerful pirate through me. Before doing that, though, please make sure your SP has been thoroughly used, You'll need to use up at least all of SP's gained until level 70 to make the 3rd job advancement. Oh, and since you have already chosen your path of the occupation by the 2nd job adv., you won't have to choose again for the 3rd job adv. Do you want to do it right now?");
} else if (status == 2) {
if (cm.getPlayer().getRemainingSp() > 0) {
if (cm.getPlayer().getRemainingSp() > (cm.getLevel() - 70) * 3) {
cm.sendNext("Please, use all your SP before continuing.");
cm.dispose();
return;
}
}
if (cm.getJobId() % 10 == 0) {
cm.gainItem(4031058, -1);
cm.changeJobById(cm.getJobId() + 1);
cm.getPlayer().removePartyQuestItem("JBQ");
}
if (Math.floor(cm.getJobId() / 10) == 51) {
cm.sendNext("Great! You are now a #bMarauder#k. As a Marauder, you will learn some of the most sophisticated skills related to melee-based attacks. #bEnergy Charge#k is a skill that allows you to store your power and the damage you receive into a special form of energy. Once this ball of energy is charged, you may use #bEnergy Blast#k to apply maximum damage against your enemies, and also use #bEnergy Drain#k to steal your enemy's HP to recover your own. #bTransformation#k will allow you to transform into a superhuman being with devastating melee attacks, and while transformed, you can use #bShockwave#k to cause a mini-earthquake and inflict massive damage to your enemies.");
} else {
cm.sendNext("Great! You have now become an #bOutlaw#k. As an Outlaw, you will become a true pistolero, a master of every known Gun attack, as well as a few other skills to help you vanquish evil. #bBurst Fire#k is a more powerful version of Double Shot, shooting more bullets and causing more damage at the same time. You also now have the ability to summon a loyal #bOctopus#k and the swooping #bGaviota#k as your trusty allies, while attacking your enemies using #bBullseye#k. You can also use element-based attacks using #bFlamethrower#k and #bIce Splitter#k.");
}
} else if (status == 3) {
cm.sendNextPrev("I've also given you some SP and AP, which will help you get started. You have now become a powerful, powerful pirate, indeed. Remember, though, that the real world will be awaiting your arrival with even tougher obstacles to overcome. Once you feel like you cannot train yourself to reach a higher place, then, and only then, come see me. I'll be here waiting.");
}
} else if (actionx["Physical"]) {
if (status == 0) {
cm.sendNext("Great job completing the physical part of the test. I knew you could do it. Now that you have passed the first half of the test, here's the second half. Please give me the necklace first.");
} else if (status == 1) {
if (cm.haveItem(4031057)) {
cm.gainItem(4031057, -1);
cm.getPlayer().setPartyQuestItemObtained("JBQ");
}
cm.sendNextPrev("Here's the 2nd half of the test. This test will determine whether you are smart enough to take the next step towards greatness. There is a dark, snow-covered area called the Holy Ground at the snowfield in Ossyria, where even the monsters can't reach. On the center of the area lies a huge stone called the Holy Stone. You'll need to offer a special item as the sacrifice, then the Holy Stone will test your wisdom right there on the spot.");
} else if (status == 2) {
cm.sendNextPrev("You'll need to answer each and every question given to you with honesty and conviction. If you correctly answer all the questions, then the Holy Stone will formally accept you and hand you #b#t4031058##k. Bring back the necklace, and I will help you to the next step forward. Good luck.");
}
} else if (cm.getPlayer().gotPartyQuestItem("JB3") && selection == 0) {
cm.sendNext("Go, talk with #b#p1090000##k and bring me #b#t4031057##k.");
cm.dispose();
} else if (cm.getPlayer().gotPartyQuestItem("JBQ") && selection == 0) {
cm.sendNext("Go, talk with #b#p2030006##k and bring me #b#t4031058##k.");
cm.dispose();
} else {
if (sel == undefined) {
sel = selection;
}
if (sel == 0) {
if (cm.getPlayer().getLevel() >= 70 && cm.getJobId() % 10 == 0) {
if (status == 0) {
cm.sendYesNo("Welcome. I'm #b#p2020013##k, the chief of all pirates, in charge of bringing out the best in each and every pirate that needs my guidance. You seem like the kind of pirate that wants to make the leap forward, the one ready to take on the challenges of the 3th job advancement. But I've seen countless pirates eager to make the jump just like you, only to see them fail. What about you? Are you ready to be tested and make the 3th job advancement?");
} else if (status == 1) {
cm.getPlayer().setPartyQuestItemObtained("JB3");
cm.sendNext("Good. You will be tested on two important aspects of the pirate: strength and wisdom. I'll now explain to you the physical half of the test. Remember #b#p1090000##k from Nautilus Harbor? Go see him, and he'll give you the details on the first half of the test. Please complete the mission, and get #b#t4031057##k from #p1090000#.");
} else if (status == 2) {
cm.sendNextPrev("The mental half of the test can only start after you pass the physical part of the test. #b#t4031057##k will be the proof that you have indeed passed the test. I'll let #b#p1022000##k in advance that you're making your way there, so get ready. It won't be easy, but I have the utmost faith in you. Good luck.");
}
}
} else {
if (cm.getPlayer().getLevel() >= 50) {
cm.sendOk("The Chief's Residence Council grants you #bconcession#k to make part of the #rcounteroffensive team against Zakum#k. Good luck on your journey ahead.");
if (!(cm.isQuestStarted(100200) || cm.isQuestCompleted(100200))) {
cm.startQuest(100200);
}
const YamlConfig = Java.type('config.YamlConfig');
if (YamlConfig.config.server.USE_ENABLE_SOLO_EXPEDITIONS && !cm.isQuestCompleted(100201)) {
cm.completeQuest(100201);
}
} else {
cm.sendOk("You're way too weak to make part of the #rcounteroffensive team against Zakum#k. Reach at least #blevel 50#k, then talk to me.");
}
cm.dispose();
}
}
}