Reviewed Mystic Doors. Fixed several issues showing up on Duey in uncommon scenarios. Fixed a concurrency issue with XMLDomMapleData. Scheduled forward the "lock disposal" action within the source. Now, it's expected that, after a set while, no method should require usage of a disposed lock and, during that while, a supposed "disposed lock" is still available to run (although no new processes is expected to require use of these locks). Fixed concurrency issues with player's current event instance, generating several inconsistencies when swiftly registering/unregistering from events. Implemented a mutually exclusive approach for server message - Boss HPbar. Fixed item-making Kage requiring lv71~80 ETC instead of the expected 81~90. Removed the possibility to buy cosmetic coupons with mesos through the NPCs. Sleepywood JQ's no longer gives cash items when they finish the quest repeatedly. Added Duey trucks in several maps lacking it. Added NPC Duey in New Leaf City. Fixed scripted quests not calculating QUEST_RATE (if applied) when rewarding experience and meso.
196 lines
9.4 KiB
JavaScript
196 lines
9.4 KiB
JavaScript
/*
|
|
This file is part of the HeavenMS MapleStory Server
|
|
Copyleft (L) 2016 - 2018 RonanLana
|
|
|
|
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/>.
|
|
*/
|
|
/* NPC: Agent E (9000036)
|
|
Victoria Road : Henesys
|
|
|
|
Refining NPC:
|
|
* Accessories refiner
|
|
*
|
|
* @author Ronan Lana
|
|
*/
|
|
|
|
var status = -1;
|
|
var selectedType = -1;
|
|
var selectedItem = -1;
|
|
var item;
|
|
var items;
|
|
var mats;
|
|
var matQty;
|
|
var cost;
|
|
var qty = 1;
|
|
var equip;
|
|
var maxEqp = 0;
|
|
|
|
function start() {
|
|
cm.getPlayer().setCS(true);
|
|
var selStr = "Hello, I am the #bAccessory NPC Crafter#k! My works are widely recognized to be too fine, up to the point at which all my items mimic not only the appearance but too the attributes of them! Everything I charge is some 'ingredients' to make them and, of course, a fee for my services. On what kind of equipment are you interessed?#b";
|
|
var options = ["Pendants","Face accessories","Eye accessories","Belts & medals","Rings"/*,"#t4032496#"*/];
|
|
for (var i = 0; i < options.length; i++)
|
|
selStr += "\r\n#L" + i + "# " + options[i] + "#l";
|
|
cm.sendSimple(selStr);
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
status++;
|
|
if (mode != 1) {
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
if (status == 0) {
|
|
if (selection == 0) { //pendants
|
|
var selStr = "Well, I've got these pendants on my repertoire:#b";
|
|
items = [1122018,1122007,1122001,1122002,1122003,1122004,1122005,1122006,1122058];
|
|
for (var i = 0; i < items.length; i++)
|
|
selStr += "\r\n#L" + i + "##t" + items[i] + "##b";
|
|
}else if (selection == 1) { //face accessory
|
|
var selStr = "Hmm, face accessories? There you go: #b";
|
|
items = [1012181,1012182,1012183,1012184,1012185,1012186, 1012108, 1012109, 1012110, 1012111];
|
|
for (var i = 0; i < items.length; i++)
|
|
selStr += "\r\n#L" + i + "##t" + items[i] + "##b";
|
|
}else if (selection == 2) { //eye accessory
|
|
var selStr = "Got hard sight? Okay, so which glasses do you want me to make?#b";
|
|
items = [1022073, 1022088, 1022103, 1022089, 1022082];
|
|
for (var i = 0; i < items.length; i++)
|
|
selStr += "\r\n#L" + i + "##t" + items[i] + "##b";
|
|
}else if (selection == 3) { //belt & medal
|
|
var selStr = "Hmm... For these, things get a little tricky. Since these items are too short and too similar one another, I don't really know what item will emerge when I finish the synthesis. Still wanna try for something?";
|
|
items = [];
|
|
maxEqp = 0;
|
|
|
|
for (var x = 1132005; x < 1132017; maxEqp++, x++)
|
|
items[maxEqp] = x;
|
|
|
|
for (var x = 1142000; x < 1142102; maxEqp++, x++)
|
|
items[maxEqp] = x;
|
|
|
|
for (var x = 1142107; x < 1142143; maxEqp++, x++)
|
|
items[maxEqp] = x;
|
|
selStr += "\r\n#L" + i + "##bTry it!#b";
|
|
|
|
}else if (selection == 4) { //ring refine
|
|
var selStr = "Rings, huh? These are my specialty, go check it yourself!#b";
|
|
items = [1112407, 1112408, 1112401, 1112413, 1112414, 1112405, 1112402];
|
|
|
|
for (var i = 0; i < items.length; i++)
|
|
selStr += "\r\n#L" + i + "##t" + items[i] + "##b";
|
|
|
|
}/*else if (selection == 5) { //make necklace
|
|
var selStr = "Need to make #t4032496#?#b";
|
|
items = [4032496];
|
|
for (var i = 0; i < items.length; i++)
|
|
selStr += "\r\n#L" + i + "##t" + items[i] + "##l";
|
|
}*/
|
|
selectedType = selection;
|
|
cm.sendSimple(selStr);
|
|
}else if (status == 1) {
|
|
if (selectedType != 3) selectedItem = selection;
|
|
|
|
if (selectedType == 0) { //pendant refine
|
|
var matSet = [[4003004, 4030012, 4001356, 4000026], [4000026, 4001356, 4000073, 4001006], [4001344, 4003001, 4003004, 4003005], [4001344, 4003001, 4003004, 4003005], [4001344, 4003001, 4003004, 4003005], [4001344, 4003001, 4003004, 4003005], [4001344, 4003001, 4003004, 4003005], [4001344, 4003001, 4003004, 4003005], [1122007, 4003002, 4000413]];
|
|
var matQtySet = [[20, 20, 5, 1], [5, 5, 10, 1], [10, 4, 20, 4], [20, 8, 20, 8], [10, 4, 20, 4], [15, 6, 30, 6], [20, 8, 40, 8], [15, 6, 30, 6], [1, 1, 1]];
|
|
var costSet = [150000, 500000, 200000, 400000, 200000, 300000, 400000, 300000, 2500000];
|
|
}else if (selectedType == 1) { //face accessory refine
|
|
var matSet = [[4006000, 4003004],[4006000, 4003004,4000026],[4006000, 4003004,4000026,4000082,4003002],[4006000, 4003005],[4006000, 4003005,4000026],[4006000, 4003005,4000026,4000082,4003002],[4001006, 4011008],[4001006, 4011008],[4001006, 4011008],[4001006, 4011008]];
|
|
var matQtySet = [[5,5],[5,5,5],[5,5,5,5,1],[5,5],[5,5,5],[5,5,5,5,1],[1,1],[1,1],[1,1],[1,1]];
|
|
var costSet = [100000,200000,300000,125000,250000,375000,500000,500000,500000,500000, 25000, 25000, 25000, 25000];
|
|
}else if (selectedType == 2) { //eye accessory refine
|
|
var matSet = [[4001006, 4003002, 4000082, 4031203], [4001005, 4011008], [4001005, 4011008], [4001005, 4011008, 4000082], [4001006, 4003002, 4003000, 4003001]];
|
|
var matQtySet = [[2, 2, 5, 10], [3, 2], [4, 3], [5, 3, 10], [2, 2, 10, 5]];
|
|
var costSet = [250000, 250000, 300000, 400000, 200000];
|
|
}else if (selectedType == 3) { //belt & medals refine
|
|
var matSet = [[4001006, 4003005, 4003004], [7777, 7777]];
|
|
var matQtySet = [[2, 5, 10], [7777, 7777]];
|
|
var costSet = [15000, 7777];
|
|
}else if (selectedType == 4) { //ring refine
|
|
var matSet = [[4003001, 4001344, 4006000], [4003001, 4001344, 4006000], [4021004, 4011008], [4011008, 4001006], [1112413, 2022039], [1112414, 4000176], [4011007, 4021009]];
|
|
var matQtySet = [[2, 2, 2], [2, 2, 2], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1]];
|
|
var costSet = [10000, 10000, 10000, 20000, 15000, 15000, 10000];
|
|
}/*else if (selectedType == 5) { //necklace refine
|
|
var matSet = [[4011007, 4011008, 4021009]];
|
|
var matQtySet = [[1, 1, 1]];
|
|
var costSet = [10000];
|
|
}*/
|
|
|
|
if (selectedType == 3) {
|
|
selectedItem = Math.floor(Math.random() * maxEqp);
|
|
item = items[selectedItem];
|
|
mats = matSet[0];
|
|
matQty = matQtySet[0];
|
|
cost = costSet[0];
|
|
}
|
|
else {
|
|
item = items[selectedItem];
|
|
mats = matSet[selectedItem];
|
|
matQty = matQtySet[selectedItem];
|
|
cost = costSet[selectedItem];
|
|
}
|
|
|
|
var prompt = "You want me to make ";
|
|
if(selectedType != 3) {
|
|
if (qty == 1)
|
|
prompt += "a #t" + item + "#?";
|
|
else
|
|
prompt += qty + " #t" + item + "#?";
|
|
}
|
|
else prompt += "a #bbelt#k or a #bmedal#k?";
|
|
|
|
prompt += " Right! I will need some items to make that item. Make sure you have a #bfree slot#k in your inventory!#b";
|
|
if (mats instanceof Array)
|
|
for(var i = 0; i < mats.length; i++)
|
|
prompt += "\r\n#i" + mats[i] + "# " + (matQty[i] * qty) + " #t" + mats[i] + "#";
|
|
else
|
|
prompt += "\r\n#i" + mats + "# " + (matQty * qty) + " #t" + mats + "#";
|
|
if (cost > 0)
|
|
prompt += "\r\n#i4031138# " + (cost * qty) + " meso";
|
|
cm.sendYesNo(prompt);
|
|
}else if (status == 2) {
|
|
if (cm.getMeso() < (cost * qty)) {
|
|
cm.sendOk("This is the fee I charge to make my items! No credit.");
|
|
} else {
|
|
var complete = true;
|
|
if (mats instanceof Array) {
|
|
for(var i = 0; complete && i < mats.length; i++)
|
|
if (!cm.haveItem(mats[i], matQty[i] * qty))
|
|
complete = false;
|
|
} else if (!cm.haveItem(mats, matQty * qty))
|
|
complete = false;
|
|
|
|
if (!complete)
|
|
cm.sendOk("Are you sure you got all the items required? Double check it!");
|
|
else {
|
|
if (cm.canHold(item, qty)) {
|
|
if (mats instanceof Array) {
|
|
for (var i = 0; i < mats.length; i++)
|
|
cm.gainItem(mats[i], -(matQty[i] * qty));
|
|
} else
|
|
cm.gainItem(mats, -(matQty * qty));
|
|
cm.gainMeso(-(cost * qty));
|
|
|
|
cm.gainItem(item, qty);
|
|
cm.sendOk("The item is done! Take and try this piece of art yourself.");
|
|
} else {
|
|
cm.sendOk("You got no free slot on your inventory.");
|
|
}
|
|
}
|
|
}
|
|
|
|
cm.dispose();
|
|
}
|
|
} |