Files
sweetgum-server/scripts/portal/rankDeveloperRoom.js
P0nk fcd879f97c Convert remaining scripts to Graal
Mainly missed scripts that use Nashorn's "Packages"
2021-04-17 21:59:15 +02:00

21 lines
681 B
JavaScript

function enter(pi) {
if (pi.getPlayer().getMapId() != 777777777) {
const Server = Java.type('net.server.Server');
if(!Server.getInstance().canEnterDeveloperRoom()) {
pi.message("The next room is currently unavailable.");
return false;
}
pi.getPlayer().saveLocation("DEVELOPER");
pi.playPortalSound(); pi.warp(777777777, "out00");
} else {
try {
var toMap = pi.getPlayer().getSavedLocation("DEVELOPER");
pi.playPortalSound(); pi.warp(toMap, "in00");
} catch(err) {
pi.playPortalSound(); pi.warp(100000000, 0);
}
}
return true;
}