116 lines
4.1 KiB
JavaScript
116 lines
4.1 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 : Raz
|
|
@
|
|
@ NPC = Green Balloon
|
|
@ Map = Hidden-Street <Stage 5>
|
|
@ NPC MapId = 922010500
|
|
@ Function = LPQ - 5th Stage
|
|
@
|
|
*/
|
|
|
|
importPackage(Packages.tools);
|
|
|
|
var status = 0;
|
|
var party;
|
|
var preamble;
|
|
var gaveItems;
|
|
|
|
function start() {
|
|
status = -1;
|
|
action(1, 0, 0);
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
|
|
|
|
if (mode == -1) {
|
|
cm.dispose();//ExitChat
|
|
}else if (mode == 0){
|
|
cm.dispose();//No
|
|
}else{ //Regular Talk
|
|
if (mode == 1)
|
|
status++;
|
|
else
|
|
status--;
|
|
var eim = cm.getPlayer().getEventInstance();
|
|
var nthtext = "5th";
|
|
|
|
|
|
if (status == 0) {
|
|
party = eim.getPlayers();
|
|
preamble = eim.getProperty("leader" + nthtext + "preamble");
|
|
gaveItems = eim.getProperty("leader" + nthtext + "gaveItems");
|
|
if (preamble == null) {
|
|
cm.sendNext("Hi. Welcome to the " + nthtext + " stage. This is the 2nd stage, but everyone has to cooperate. There are 6 portals here. One is guarded by undefeatable monsters, and one is very high. I'd like you and your party to go in each one and break the boxes inside. Bring back the drops -- there should be 24.");//not 24!
|
|
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, goto the next stage, the portal is open!");
|
|
cm.dispose();
|
|
}
|
|
}else{
|
|
if(gaveItems == null){
|
|
if(cm.getPlayer().getMap().getCharacters().size() != eim.getPlayers().size()) {
|
|
cm.sendOk("Please wait for all of your party members to get here.");
|
|
cm.dispose();
|
|
} else if(cm.itemQuantity(4001022) >= 24){
|
|
cm.sendOk("Good job! you have collected all 24 #b#t4001022#'s#k");
|
|
}else{
|
|
cm.sendOk("Sorry you don't have all 24 #b#t4001022#'s#k");
|
|
cm.dispose();
|
|
}
|
|
}else{
|
|
cm.sendOk("Hurry, goto the next stage, the portal is open!");
|
|
cm.dispose();
|
|
}
|
|
}}
|
|
}else if (status == 1){
|
|
cm.removeAll(4001022);
|
|
|
|
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("LudiPQ5th");
|
|
eim.setProperty("5stageclear","true");
|
|
eim.setProperty("leader" + nthtext + "gaveItems","done");
|
|
cm.dispose();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function isLeader(){
|
|
if(cm.getParty() == null){
|
|
return false;
|
|
}else{
|
|
return cm.isLeader();
|
|
}
|
|
} |