Fixed pet Snail not expiring properly (being removed from inventory when the time's up). Broadcasted code update for most of the missing portal sound effects for portal scripts. It is expected for all scripted portals now to play the sound effect when traversing it.
10 lines
301 B
JavaScript
10 lines
301 B
JavaScript
function enter(pi) {
|
|
if(pi.isQuestActive(21747) || pi.isQuestActive(21744) && pi.isQuestCompleted(21745)) {
|
|
pi.playPortalSound(); pi.warp(925040000,0);
|
|
return true;
|
|
}
|
|
else {
|
|
pi.message("You don't have permission to access this area.");
|
|
return false;
|
|
}
|
|
} |