source
Source for my MapleSolaxiaV2 (v83 MapleStory).
This commit is contained in:
66
scripts/npc/world0/2032001.js
Normal file
66
scripts/npc/world0/2032001.js
Normal file
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
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;
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user