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.
28 lines
506 B
JavaScript
28 lines
506 B
JavaScript
var status;
|
|
|
|
function start(){
|
|
status = -1;
|
|
action(1, 0, 0);
|
|
}
|
|
|
|
function action(mode, type, selection){
|
|
if(mode == -1 || (mode == 0 && status == 0)){
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
else if(mode == 0)
|
|
status--;
|
|
else
|
|
status++;
|
|
|
|
if(status == 0){
|
|
cm.sendNext("What the... you don't belong here!");
|
|
}
|
|
else if(status == 1){
|
|
var puppet = cm.getEventManager("Puppeteer");
|
|
puppet.setProperty("player", cm.getPlayer().getName());
|
|
puppet.startInstance(cm.getPlayer());
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
} |