sweetgum83/scripts/portal/jnr2_out.js

10 lines
281 B
JavaScript
Raw Normal View History

2024-01-19 08:56:28 +00:00
function enter(pi) {
if (pi.getEventInstance().getIntProperty("statusStg3") == 3) {
pi.playPortalSound();
pi.warp(926110200, 0); //next
return true;
} else {
pi.playerMessage(5, "The portal is not opened yet.");
return false;
}
}