sweetgum83/scripts/portal/raidout.js
2024-01-19 03:56:28 -05: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;
}