well this isnt really a bug but it anoys the shit out of ppl when they are at kbd lair and have to walk back and stuff so i fixed a teleports up a little so u can tele psat 20 wild but not if u are in combat.
here is what u do
open client.java and look for this
Code:
public void triggerTele(int x, int y, int height) {
if (System.currentTimeMillis() - lastAction > 5000) {
lastAction = System.currentTimeMillis();
resetWalkingQueue();
if(wildylevel > 20 && isInWilderness(absX, absY, 1)){
sM("You cannot teleport past 20 wilderness");
return;
}
replace that with this
Code:
public void triggerTele(int x, int y, int height) {
if (System.currentTimeMillis() - lastAction > 5000) {
lastAction = System.currentTimeMillis();
resetWalkingQueue();
if(inCombat == true && isInWilderness(absX, absY, 1)){
sM("You cannot teleport while in combat");
return;
}