I've got this basic code for wilderness through wild, except it's not all wild:

[PHP] public boolean inwildy = false;
public boolean inwildy2 = false;
public void checkwildy() {
if ((absY <= 10112 && absY >= 3970) || (absY <= 3672)) {
inwildy = false;
} else {
inwildy = true;
}
}

public void checkwildy2() {
if ((absY <= 10112 && absY >= 3970) || (absY <= 3514)) {
inwildy2 = false;
} else {
inwildy2 = true;
}
}[/PHP]

That code leaves me with wild everywhere except my one designated place for a true pk box:

Is there any coords in there that could be causing this?