They love botters, I coded this script to fuck with rune essence miners:
and now I get this after shutting the door about 10 times:
/Ihatejagexlikingf2pbots
Code:
import com.rsbuddy.client.RSNPC;
import com.rsbuddy.script.ActiveScript;
import com.rsbuddy.script.Manifest;
import com.rsbuddy.script.methods.Game;
import com.rsbuddy.script.methods.Npcs;
import com.rsbuddy.script.methods.Objects;
import com.rsbuddy.script.methods.Walking;
import com.rsbuddy.script.wrappers.GameObject;
import com.rsbuddy.script.wrappers.Npc;
import com.rsbuddy.script.wrappers.Tile;
@Manifest(
authors = {"Jesus"},
name = "Automatic door shutter!",
description = "Shuts doors to stop bots!",
keywords = "Anti-bot",
version = 0.01
)
public class antiEssenceMiner extends ActiveScript {
final int runecraftingGuy = 5913;
Tile varrockShop = new Tile(3253, 3401);
final int doorID = 24379;
@Override
public int loop() {
if(Game.isLoggedIn()){
Npc theGuy = Npcs.getNearest(runecraftingGuy);
if(theGuy != null){
GameObject door = Objects.getNearest(doorID);
if(door != null){
door.interact("Close");
sleep(300);
} else{
log("DOOR IS SHUT, WOOP WOP!");
}
} else {
Walking.findPath(varrockShop).traverse();
}
}
return 0;
}
}
and now I get this after shutting the door about 10 times:
/Ihatejagexlikingf2pbots