Fixed WK charges not overriding one another and some concurrency issues within MapleMap and EventInstanceManager. New feature: job level cap, limits EXP gain until job advancement is done. New tool: MapleQuestItemFetcher, searches through the server files for missing quest items and reports the results.
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
/* Monstrous Looking Statue
|
|
Puppeteer's Secret Passage (910510100)
|
|
Puppeteer JQ.
|
|
*/
|
|
|
|
var status;
|
|
|
|
function start() {
|
|
status = -1;
|
|
action(1, 0, 0);
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
if (mode == -1) {
|
|
cm.dispose();
|
|
} else {
|
|
if (mode == 0 && type > 0) {
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
if (mode == 1)
|
|
status++;
|
|
else
|
|
status--;
|
|
|
|
if(status == 0) {
|
|
cm.sendYesNo("Ahead awaits the Master himself. Are you ready to face him?");
|
|
} else {
|
|
if(cm.getClient().getChannelServer().getMapFactory().getMap(925020010).getCharacters().size() > 0) {
|
|
cm.sendOk("Someone is already challenging the Master. Try again later.");
|
|
} else {
|
|
cm.warp(910510202, 0);
|
|
}
|
|
|
|
cm.dispose();
|
|
}
|
|
}
|
|
} |