15 lines
367 B
JavaScript
15 lines
367 B
JavaScript
|
function enter(pi) {
|
||
|
var eim = pi.getEventInstance();
|
||
|
if (eim != null) {
|
||
|
if (eim.getIntProperty("glpq5") < 5) {
|
||
|
pi.playerMessage(5, "The portal is not opened yet.");
|
||
|
return false;
|
||
|
} else {
|
||
|
pi.playPortalSound();
|
||
|
pi.warp(610030600, 0);
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|