72 lines
2.5 KiB
JavaScript
72 lines
2.5 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/>.
|
|
*/
|
|
/* Spiruna
|
|
Orbis : Old Man's House (200050001)
|
|
|
|
Refining NPC:
|
|
* Dark Crystal - Half Price compared to Vogen, but must complete quest
|
|
*/
|
|
|
|
var status = 0;
|
|
|
|
function start() {
|
|
if (cm.isQuestCompleted(3034)) {
|
|
cm.sendYesNo("You've been so much of a help to me... If you have any Dark Crystal Ore, I can refine it for you for only #b500000 meso#k each.");
|
|
} else {
|
|
cm.sendOk("Go away, I'm trying to meditate.");
|
|
cm.dispose();
|
|
}
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
if (mode < 1) {
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
status++;
|
|
if (status == 1) {
|
|
cm.sendGetNumber("Okay, so how many do you want me to make?", 1, 1, 100);
|
|
} else if (status == 2) {
|
|
var complete = true;
|
|
|
|
if (cm.getMeso() < 500000 * selection) {
|
|
cm.sendOk("I'm sorry, but I am NOT doing this for free.");
|
|
cm.dispose();
|
|
return;
|
|
} else if (!cm.haveItem(4004004, 10 * selection)) {
|
|
complete = false;
|
|
} else if (!cm.canHold(4005004, selection)) {
|
|
cm.sendOk("Are you having trouble with no empty slots on your inventory? Sort that out first!");
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
if (!complete) {
|
|
cm.sendOk("I need that ore to refine the Crystal. No exceptions..");
|
|
} else {
|
|
cm.gainItem(4004004, -10 * selection);
|
|
cm.gainMeso(-500000 * selection);
|
|
cm.gainItem(4005004, selection);
|
|
cm.sendOk("Use it wisely.");
|
|
}
|
|
cm.dispose();
|
|
}
|
|
} |