sweetgum83/scripts/portal/glpqPortal01.js
2024-01-19 03:56:28 -05:00

10 lines
266 B
JavaScript

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