sweetgum83/scripts/portal/gendergo.js
2024-01-19 03:56:28 -05:00

22 lines
735 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;
}
}
}