137 lines
5.6 KiB
JavaScript
137 lines
5.6 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/>.
|
|
*/
|
|
/**
|
|
Pila Present
|
|
-- By ---------------------------------------------------------------------------------------------
|
|
get31720 (RaGEZONE)
|
|
-- Version Info -----------------------------------------------------------------------------------
|
|
1.0 - First Version by Angel
|
|
2.0 - Second Version by happydud3 & XotiCraze
|
|
3.0 - Third Version by RonanLana (HeavenMS)
|
|
4.0 - Fourth Version by Drago (MapleStorySA)
|
|
---------------------------------------------------------------------------------------------------
|
|
**/
|
|
var status = -1;
|
|
|
|
var marriageRoom;
|
|
var marriageAction = 0;
|
|
var marriageGifts;
|
|
|
|
function start() {
|
|
marriageRoom = cm.getPlayer().getMarriageInstance() != null;
|
|
if (!marriageRoom) {
|
|
marriageGifts = cm.getUnclaimedMarriageGifts();
|
|
marriageAction = (!marriageGifts.isEmpty() ? 2 : ((cm.haveItem(4031423) || cm.haveItem(4031424)) ? 1 : 0));
|
|
}
|
|
|
|
status = -1;
|
|
action(1, 0, 0);
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
if (mode == 1) {
|
|
status++;
|
|
} else {
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
if (marriageRoom) {
|
|
if (status == 0) {
|
|
var talk = "Hi there, welcome to the wedding's Gift Registry. From which spouse's wishlist would you like to take a look?";
|
|
var options = ["Groom", "Bride"];
|
|
|
|
cm.sendSimple(talk + "\r\n\r\n#b" + generateSelectionMenu(options) + "#k");
|
|
} else {
|
|
cm.sendMarriageWishlist(selection == 0);
|
|
cm.dispose();
|
|
}
|
|
} else {
|
|
if (marriageAction == 2) { // unclaimed gifts
|
|
if (status == 0) {
|
|
var talk = "Hi there, it seems you have unclaimed gifts from your wedding. Claim them here on the wedding's Gift Registry reserve.";
|
|
cm.sendNext(talk);
|
|
} else {
|
|
cm.sendMarriageGifts(marriageGifts);
|
|
cm.dispose();
|
|
}
|
|
} else if (marriageAction == 1) { // onyx prizes
|
|
if (status == 0) {
|
|
var msg = "Hello I exchange Onyx Chest for Bride and Groom and the Onyx Chest for prizes!#b";
|
|
var choice1 = ["I have an Onyx Chest for Bride and Groom", "I have an Onyx Chest"];
|
|
for (var i = 0; i < choice1.length; i++) {
|
|
msg += "\r\n#L" + i + "#" + choice1[i] + "#l";
|
|
}
|
|
cm.sendSimple(msg);
|
|
} else if (status == 1) {
|
|
if (selection == 0) {
|
|
if (cm.haveItem(4031424)) {
|
|
if (cm.getPlayer().isMarried()) { // thanks MedicOP for solving an issue here
|
|
if (cm.getInventory(2).getNextFreeSlot() >= 0) {
|
|
var rand = Math.floor(Math.random() * bgPrizes.length);
|
|
cm.gainItem(bgPrizes[rand][0], bgPrizes[rand][1]);
|
|
|
|
cm.gainItem(4031424, -1);
|
|
cm.dispose();
|
|
} else {
|
|
cm.sendOk("You don't have a free USE slot right now.");
|
|
cm.dispose();
|
|
}
|
|
} else {
|
|
cm.sendOk("You must be married to claim the prize for this box.");
|
|
cm.dispose();
|
|
}
|
|
} else {
|
|
cm.sendOk("You don't have an Onyx Chest for Bride and Groom.");
|
|
cm.dispose();
|
|
}
|
|
} else if (selection == 1) {
|
|
if (cm.haveItem(4031423)) {
|
|
if (cm.getInventory(2).getNextFreeSlot() >= 0) {
|
|
var rand = Math.floor(Math.random() * cmPrizes.length);
|
|
cm.gainItem(cmPrizes[rand][0], cmPrizes[rand][1]);
|
|
|
|
cm.gainItem(4031423, -1);
|
|
cm.dispose();
|
|
} else {
|
|
cm.sendOk("You don't have a free USE slot right now.");
|
|
cm.dispose();
|
|
}
|
|
} else {
|
|
cm.sendOk("You don't have an Onyx Chest.");
|
|
cm.dispose();
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
cm.sendOk("Hi there, welcome to Amoria's Wedding Gift Registry reserve. We redistribute and tender gifts for both wedding spouses and lucky ceremonial attenders.");
|
|
cm.dispose();
|
|
}
|
|
}
|
|
}
|
|
|
|
function generateSelectionMenu(array) {
|
|
var menu = "";
|
|
for (var i = 0; i < array.length; i++) {
|
|
menu += "#L" + i + "#" + array[i] + "#l\r\n";
|
|
}
|
|
return menu;
|
|
} |