Added some CWKPQ imports for the server. Enabled basic mechanics for a run, but still WIP.
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
function enter(pi) {
|
|
if (pi.getPlayer().getJob().getJobNiche() == 2) {
|
|
pi.warp(610030521,0);
|
|
return true;
|
|
} else {
|
|
pi.playerMessage(5, "Only mages may enter this portal.");
|
|
return false;
|
|
}
|
|
} |