Rebalanced the EXTREMELY low level section of the equipment level up system. Added support code for quests on Kerning Square and Mushroom Castle. Added quest scripts for many missing scripted quests. Refactored medal quests, now using a default script system for uncoded medal questid's. Fixed a DB leak regarding quest status and medal maps tables. Added proximity check for NPCs to start/complete quests that doesn't use the lightbulb system. Added "debuff" command, that debuffs people nearby.
15 lines
578 B
JavaScript
15 lines
578 B
JavaScript
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;
|
|
} |