10 lines
265 B
JavaScript
10 lines
265 B
JavaScript
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;
|
|
}
|
|
} |