Added portal crossing sound effect on several scripted portals which were missing it. Added a few more scrolls on Spindle. Added several skill/mastery book drops, making "4th job skill questing" somewhat more viable.
11 lines
297 B
JavaScript
11 lines
297 B
JavaScript
//Author: kevintjuh93
|
|
|
|
function enter(pi) {
|
|
if (pi.getPlayer().getEvents().getGagaRescue().fallAndGet() > 3) {
|
|
pi.playPortalSound(); pi.warp(922240200, 0);
|
|
pi.getPlayer().cancelEffect(2360002);
|
|
} else
|
|
pi.playPortalSound(); pi.warp(pi.getPlayer().getMapId(), 0);
|
|
|
|
return true;
|
|
} |