Files
sweetgum-server/scripts/portal/TD_MC_enterboss1.js
ronancpl d91c893400 Map chair patch + other minor fixes
Patched map chair skill not disposing heal task properly in case of player changing maps while resting.
2017-10-22 02:04:36 -02:00

13 lines
316 B
JavaScript

function enter(pi) {
var questProgress = pi.getQuestProgress(2330, 3300005) + pi.getQuestProgress(2330, 3300006) + pi.getQuestProgress(2330, 3300007); //3 Yetis
if(pi.isQuestStarted(2330) && questProgress < 3){
pi.openNpc(1300013);
}
else{
pi.playPortalSound();
pi.warp(106021401, 1);
}
return true;
}