Fixed slotMax function caching up dirtied player data. Fixed many portals not supposed to warp players to "random spawnpoints". Fixed Wind Walk not being cancellable by attacking.
9 lines
233 B
JavaScript
9 lines
233 B
JavaScript
function enter(pi) {
|
|
if (pi.getMap().getReactorByName("rnj6_out").getState() == 1) {
|
|
pi.warp(926100300, 0);
|
|
return(true);
|
|
} else {
|
|
pi.playerMessage(5, "The portal is not opened yet.");
|
|
return(false);
|
|
}
|
|
} |