sweetgum83/scripts/npc/9000049.js

86 lines
3.1 KiB
JavaScript
Raw Normal View History

2024-01-19 08:56:28 +00:00
/*
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/>.
*/
/* Fairytail Crackers
Witch Tower Entrance (980040000)
Used to warp into the Jump Quest. Currently only used for GM events.
First revision by Twdtwd.
*/
var status;
var stage = 1;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode < 0) {
cm.dispose();
} else {
if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0 && mode == 1) {
if (cm.getPlayer().isGM()) {
var event = "CLOSED";
var stage = cm.getClient().getChannelServer().getStoredVar(9000049);
if (stage == 1) {
event = "EASY";
}
if (stage == 2) {
event = "MEDIUM";
}
if (stage == 3) {
event = "HARD";
}
cm.sendSimple("Hello GM.\r\nThe event is currently: #r" + event + "#k\r\nWhat would you like to do?\r\n#b#L0#Enter the event#l\r\n#L1#Close the event#l\r\n#L2#Set the event to EASY#l\r\n#L3#Set the event to MEDIUM#l\r\n#L4#Set the event to HARD#l");
} else {
var stage = cm.getClient().getChannelServer().getStoredVar(9000049);
if (stage == 0) {
cm.sendOk("It looks like the Tower isn't unlocked yet. Please wait for a GM to unlock it!");
} else {
cm.warp(980040000 + stage * 1000, 0);
}
cm.dispose();
}
} else if (status == 1 && cm.getPlayer().isGM()) {
if (selection == 0) {
var stage = cm.getClient().getChannelServer().getStoredVar(9000049);
if (stage == 0) {
cm.sendOk("It looks like the Tower isn't unlocked yet. Please wait for a GM to unlock it!");
} else {
cm.warp(980040000 + stage * 1000, 0);
}
cm.dispose();
return;
}
cm.getClient().getChannelServer().setStoredVar(9000049, selection - 1);
cm.dispose();
} else {
cm.dispose();
}
}
}