sweetgum83/scripts/portal/glpqPortal02.js

10 lines
265 B
JavaScript
Raw Normal View History

2024-01-19 08:56:28 +00:00
function enter(pi) {
if (pi.getPlayer().getJob().getJobNiche() == 2) {
pi.playPortalSound();
pi.warp(610030521, 0);
return true;
} else {
pi.playerMessage(5, "Only mages may enter this portal.");
return false;
}
}