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

10 lines
267 B
JavaScript

function enter(pi) {
if (pi.getPlayer().getJob().getJobNiche() == 4) {
pi.playPortalSound();
pi.warp(610030530, 0);
return true;
} else {
pi.playerMessage(5, "Only thieves may enter this portal.");
return false;
}
}