source
Source for my MapleSolaxiaV2 (v83 MapleStory).
This commit is contained in:
53
scripts/npc/world0/2032003.js
Normal file
53
scripts/npc/world0/2032003.js
Normal file
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
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 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/>.
|
||||
*/
|
||||
|
||||
/* Lira
|
||||
*
|
||||
* Adobis's Mission I : Breath of Lava <Level 2> (280020001)
|
||||
* Zakum Quest NPC
|
||||
* Custom Quest 100202 -> Done this stage once
|
||||
*/
|
||||
|
||||
var status;
|
||||
|
||||
function start() {
|
||||
cm.sendNext("Congratulations on getting this far! Well, I suppose I'd better give you your #bBreath of Fire#k. You've certainly earned it!");
|
||||
}
|
||||
|
||||
function action(mode, type, selection) {
|
||||
if (mode < 1)
|
||||
cm.dispose();
|
||||
else {
|
||||
status++;
|
||||
if (status == 1)
|
||||
cm.sendNextPrev("Well, time for you to head off.");
|
||||
else if (status == 2) {
|
||||
cm.gainItem(4031062,1);
|
||||
cm.warp(211042300);
|
||||
if (cm.isQuestCompleted(100202)) {
|
||||
cm.startQuest(100202);
|
||||
cm.completeQuest(100202);
|
||||
cm.gainExp(10000);
|
||||
}
|
||||
cm.dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user