Rebalanced the low level section of the equipment level up system. Fixed EQUIP_EXP_RATE not acting as expected to be. Changed chscroll system, now using a new flag instead of the SCROLL_CHANCE_RATE. Optimized PlayerStorage, now using a proper name map when searching for a character name. Tweaked some aspects of the BalrogPQ. Improved the channel capacity bar and world server capacity checks throughout the source.
17 lines
605 B
JavaScript
17 lines
605 B
JavaScript
importPackage(java.util);
|
|
|
|
function enter(pi) {
|
|
if(pi.isQuestStarted(2224) || pi.isQuestStarted(2226) || pi.isQuestCompleted(2227)) {
|
|
var hourDay = pi.getHourOfDay();
|
|
if(!((hourDay >= 0 && hourDay < 7) || hourDay >= 17)) {
|
|
pi.getPlayer().dropMessage(5, "You cannot access this area right now.");
|
|
return false;
|
|
} else {
|
|
pi.playPortalSound(); pi.warp(pi.isQuestCompleted(2227) ? 910100001 : 910100000,"out00");
|
|
return true;
|
|
}
|
|
}
|
|
|
|
pi.getPlayer().dropMessage(5, "You cannot access this area.");
|
|
return false;
|
|
} |