Fixed player receiving DOT even if protected on Orbis Tower <B2>, added HPbar on Rombot, fixed keybinding issue with clashing skill-item id's, fixed some mischeckings on NPC crafters, fixed "travelling events" sending players to random spawnpoints when arriving, fixed hair&face commands, fixed dispel effect not showing to others, updated drop data on mobbook.
73 lines
2.7 KiB
JavaScript
73 lines
2.7 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/>.
|
|
*/
|
|
/*
|
|
NPC Name: June
|
|
Map(s): Kerning Square : 7th Floor
|
|
Description: Entrance to Spirit of Rock
|
|
Depart_topFloorEnter
|
|
request for a new song (block the portal before the spirit)
|
|
composition fee (block the portal before the spirit)
|
|
Say "NO" to Plagiarism (now we can open the portal)
|
|
*/
|
|
var status = -1;
|
|
|
|
function start() {
|
|
cm.sendSimple("Hold up! Access to this area is limited due to remodeling. I can only allow people who meet certain conditions to enter here.#b\n\r\n#L0#I'm helping #eBlake#n right now.#l\r\n#L1#I'm a #rVIP#b at this shopping Center!#l");
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
status++;
|
|
if (mode != 1) {
|
|
if (mode == 0 && type != 4) {
|
|
status -= 2;
|
|
} else {
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
}
|
|
if (status == 0) {
|
|
if (selection == 0) {
|
|
if (cm.isQuestStarted(2286) || cm.isQuestStarted(2287) || cm.isQuestStarted(2288)) {
|
|
var rock = cm.getEventManager("RockSpirit");
|
|
rock.newInstance("RockSpirit");
|
|
rock.setProperty("player", cm.getPlayer().getName());
|
|
rock.startInstance(cm.getPlayer());
|
|
cm.dispose();
|
|
return;
|
|
} else {
|
|
cm.sendOk("I did not hear anything from Blake that you are assisting him.");
|
|
}
|
|
} else {
|
|
if (cm.isQuestCompleted(2291)) {
|
|
var rock = cm.getEventManager("VIPRockSpirit");
|
|
rock.newInstance("VIPRockSpirit");
|
|
rock.setProperty("player", cm.getPlayer().getName());
|
|
rock.startInstance(cm.getPlayer());
|
|
cm.dispose();
|
|
return;
|
|
} else {
|
|
cm.sendOk("#rVIP#k? Yeah that is funny #rMr. VIP#k, now get lost before I call security.");
|
|
}
|
|
}
|
|
cm.dispose();
|
|
}
|
|
} |