Fixed pet Snail not expiring properly (being removed from inventory when the time's up). Broadcasted code update for most of the missing portal sound effects for portal scripts. It is expected for all scripted portals now to play the sound effect when traversing it.
14 lines
458 B
JavaScript
14 lines
458 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(925100400,0); //next
|
|
return true;
|
|
} else {
|
|
pi.playerMessage(5, "The portal is not opened yet.");
|
|
return false;
|
|
}
|
|
} |