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.
This commit is contained in:
12
scripts/portal/enterDollWay.js
Normal file
12
scripts/portal/enterDollWay.js
Normal file
@@ -0,0 +1,12 @@
|
||||
function enter(pi) {
|
||||
if(pi.isQuestCompleted(20730) || pi.isQuestCompleted(21731)) { // puppeteer defeated, newfound secret path
|
||||
pi.warp(105070300,3);
|
||||
return true;
|
||||
} else if(pi.isQuestStarted(21731)) {
|
||||
pi.warp(910510100,0);
|
||||
return true;
|
||||
} else {
|
||||
pi.message("An ominous power prevents you from passing here.");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,9 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user