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

10 lines
281 B
JavaScript

function enter(pi) {
if (pi.getEventInstance().getIntProperty("statusStg1") == 1) {
pi.playPortalSound();
pi.warp(926110001, 0); //next
return true;
} else {
pi.playerMessage(5, "The portal is not opened yet.");
return false;
}
}