sweetgum83/scripts/portal/jnr3_in0.js

10 lines
274 B
JavaScript
Raw Permalink Normal View History

2024-01-19 08:56:28 +00:00
function enter(pi) {
if (pi.getMap().getReactorByName("jnr3_out1").getState() == 1) {
pi.playPortalSound();
pi.warp(926110201, 0);
return true;
} else {
pi.playerMessage(5, "The door is not opened yet.");
return false;
}
}