Files
sweetgum-server/scripts/portal/gendergo.js
ronancpl 278b5e8140 Portal sound effects + Improved skillbook drops
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.
2018-02-14 18:25:49 -02:00

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;
}
}
}