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.
8 lines
214 B
JavaScript
8 lines
214 B
JavaScript
function enter(pi) {
|
|
if(pi.isQuestStarted(22008)){
|
|
pi.playPortalSound(); pi.warp(100030103, "west00");
|
|
} else {
|
|
pi.playerMessage(5, "You cannot go to the Back Yard without a reason");
|
|
}
|
|
return true;
|
|
}
|