Files
sweetgum-server/scripts/portal/raidout.js
2021-09-09 23:35:59 +02:00

10 lines
196 B
JavaScript

function enter(pi) {
var map = pi.getPlayer().getSavedLocation("BOSSPQ");
if (map == -1) {
map = 100000000;
}
pi.playPortalSound();
pi.warp(map, 0);
return true;
}