Files
sweetgum-server/scripts/npc/world0/2040044.js
ronancpl 972517e7b2 source
Source for my MapleSolaxiaV2 (v83 MapleStory).
2015-11-02 23:17:21 -02:00

112 lines
3.7 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/>.
*/
/*
@ Author : Twdtwd
@
@ NPC = Violet Balloon
@ Map = Hidden-Street <Crack on the Wall>
@ NPC MapId = 922010900
@ Function = LPQ - Last Stage
@
@ Description: Used after the boss is killed to trigger the bonus stage.
*/
importPackage(Packages.tools);
var status = 0;
var party;
var preamble;
var gaveItems;
var nthtext = "last";
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
}else if (mode == 0){
cm.dispose();
}else{
if (mode == 1)
status++;
else
status--;
var eim = cm.getPlayer().getEventInstance();
if (status == 0) {
party = eim.getPlayers();
preamble = eim.getProperty("leader" + nthtext + "preamble");
gaveItems = eim.getProperty("leader" + nthtext + "gaveItems");
if (preamble == null) {
cm.sendOk("Hi. Welcome to the " + nthtext + " stage.");
eim.setProperty("leader" + nthtext + "preamble","done");
cm.dispose();
}else{
if(!isLeader()){
if(gaveItems == null){
cm.sendOk("Please tell your #bParty-Leader#k to come talk to me");
cm.dispose();
}else{
cm.sendOk("Hurry, go to the next stage, the portal is open!");
cm.dispose();
}
} else if(gaveItems == null){
cm.sendSimple("What's up?\r\n#L0#I've got your passes!#l\r\n"); // #L1#There's something wrong here.#l
} else {
cm.dispose();
}
}
}else if (status == 1){
if (selection == 0) {
if(cm.itemQuantity(4001023) >= 1) {
cm.sendOk("Good job! you have collected the #b#t4001023#!#k");
}else{
cm.sendOk("Sorry you don't have the #b#t4001023#.#k");
cm.dispose();
}
}
}else if (status == 2){
cm.removeAll(4001023);
var map = eim.getMapInstance(cm.getPlayer().getMapId());
map.broadcastMessage(MaplePacketCreator.showEffect("quest/party/clear"));
map.broadcastMessage(MaplePacketCreator.playSound("Party1/Clear"));
//map.broadcastMessage(MaplePacketCreator.environmentChange("gate", 2));
cm.givePartyExp("LudiPQLast");
eim.setProperty("9stageclear","true");
eim.setProperty("leader" + nthtext + "gaveItems","done");
eim.schedule("startBonus", 1000);
cm.dispose();
}
}
}
function isLeader(){
if(cm.getParty() == null)
return false;
else
return cm.isLeader();
}