sweetgum83/scripts/portal/glpqPortal01.js

10 lines
266 B
JavaScript
Raw Normal View History

2024-01-19 08:56:28 +00:00
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;
}
}