Files
sweetgum-server/scripts/portal/enterDollcave.js
ronancpl 624aca375e WK charges fix + Job level cap + MapleQuestItemFetcher
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.
2017-11-07 10:44:00 -02:00

9 lines
269 B
JavaScript

function enter(pi) {
if(pi.isQuestCompleted(20730) || pi.isQuestCompleted(21731)) { // puppeteer defeated, newfound secret path
pi.warp(105040201,2);
return true;
}
pi.openNpc(1063011, "PupeteerPassword");
return false;
}