Made NPCs now work properly on multiworld system. Solved multiple issues regarding Player Shops not giving back items properly when owner exits. Added restriction on changing channels at FM rooms, preventing shop owner entering Cash Shop.
67 lines
2.3 KiB
JavaScript
67 lines
2.3 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: kevintjuh93
|
|
NPC Name: Harry
|
|
Map(s):
|
|
Description: Event Assistant
|
|
*/
|
|
var status = 0;
|
|
|
|
function start() {
|
|
status = -1;
|
|
cm.sendSimple("Man... It is hot!!!~ How can I help you?\r\n#L0##bLeave the event game.#l\r\n#L1#Buy the weapon (Wooden Club 1 meso)");
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
if (mode == -1) {
|
|
cm.dispose();
|
|
}else if (mode == 0){
|
|
cm.dispose();
|
|
}else{
|
|
if (mode == 1)
|
|
status++;
|
|
else
|
|
status--;
|
|
}
|
|
if (status == 0) {
|
|
if (selection == 0) {
|
|
cm.sendYesNo("If you leave now, you can't participate in this event for the next 24 hours. Are you sure you want to leave?");
|
|
} else if (selection == 1) {
|
|
if (cm.getMesos < 1 && !cm.canHold(1322005)) {
|
|
cm.sendOk("You don't have enough mesos or you don't have any space in your inventory.");
|
|
cm.dispose();
|
|
} else {
|
|
cm.gainItem(1322005);
|
|
cm.gainMeso(-1);
|
|
cm.dispose();
|
|
}
|
|
}
|
|
} else if (status == 1) {
|
|
if (cm.getEvent() != null) {
|
|
cm.getEvent().addLimit();
|
|
}
|
|
cm.warp(109050001);
|
|
cm.dispose();
|
|
}
|
|
}
|
|
|
|
|