sweetgum83/scripts/portal/davy_next2.js
2024-01-19 03:56:28 -05:00

17 lines
498 B
JavaScript

function passedGrindMode(map, eim) {
if (eim.getIntProperty("grindMode") == 0) {
return true;
}
return eim.activatedAllReactorsOnMap(map, 2511000, 2517999);
}
function enter(pi) {
if (pi.getMap().getMonsters().size() == 0 && passedGrindMode(pi.getMap(), pi.getEventInstance())) {
pi.playPortalSound();
pi.warp(925100300, 0); //next
return true;
} else {
pi.playerMessage(5, "The portal is not opened yet.");
return false;
}
}