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.
20 lines
710 B
JavaScript
20 lines
710 B
JavaScript
function enter(pi) {
|
|
var map = pi.getPlayer().getMap();
|
|
if(pi.getPortal().getName() == "female00") {
|
|
if (pi.getPlayer().getGender() == 1) {
|
|
pi.playPortalSound(); pi.warp(map.getId(), "female01");
|
|
return true;
|
|
} else {
|
|
pi.message("This portal leads to the girls' area, try the portal at the other side.");
|
|
return false;
|
|
}
|
|
} else {
|
|
if (pi.getPlayer().getGender() == 0) {
|
|
pi.playPortalSound(); pi.warp(map.getId(), "male01");
|
|
return true;
|
|
} else {
|
|
pi.message("This portal leads to the boys' area, try the portal at the other side.");
|
|
return false;
|
|
}
|
|
}
|
|
} |