61 lines
2.1 KiB
JavaScript
61 lines
2.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/>.
|
|
*/
|
|
var status = 0;
|
|
var goToMansion = false;
|
|
|
|
function start() {
|
|
status = -1;
|
|
action(1, 0, 0);
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
if (mode != 1) {
|
|
if (mode == 0)
|
|
cm.sendOk("Alright, see you next time.");
|
|
cm.dispose();
|
|
}
|
|
else {
|
|
status++;
|
|
if (cm.getPlayer().getMapId() == 682000000) {
|
|
if (status == 0)
|
|
cm.sendSimple("Where to, boss? \r\n#L0#New Leaf City#l\r\n#L1#Haunted Mansion#l");
|
|
else if (status == 1) {
|
|
if (selection == 0)
|
|
cm.sendYesNo("You want to go to New Leaf City?");
|
|
else {
|
|
goToMansion = true;
|
|
cm.sendYesNo("You're sure you want to enter the Mansion?");
|
|
}
|
|
} else if (status == 2) {
|
|
cm.warp(goToMansion ? 682000100 : 600000000, 0);
|
|
cm.dispose();
|
|
}
|
|
} else {
|
|
if (status == 0) {
|
|
cm.sendYesNo("Would you like to go to the Haunted Mansion?");
|
|
} else if (status == 1) {
|
|
cm.warp(682000000, 0);
|
|
cm.dispose();
|
|
}
|
|
}
|
|
}
|
|
} |