11 lines
303 B
JavaScript
11 lines
303 B
JavaScript
|
function enter(pi) {
|
||
|
if (pi.isQuestStarted(21201) || pi.isQuestStarted(21302)) { //aran first job
|
||
|
pi.playPortalSound();
|
||
|
pi.warp(140030000, 1);
|
||
|
return true;
|
||
|
} else {
|
||
|
pi.playerMessage(5, "Something seems to be blocking this portal!");
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
}
|