pash 14 Posted December 17, 2018 I am not too aware of the rules, so please let me know if I should take this post down for violating rules. I figured some free christmas bots wouldn't harm anyone Please check them out at my github repo!
pash 14 Author Posted December 17, 2018 I'm just getting started with scripting, but yeah, scripting seems to come pretty naturally to me. After spending a couple hours researching the dreambot api's, I've coded up three fully functional unique bots with a fair bit of antiban techniques built into them. I'm liking where this is going 😎
Evil Bob 5 Posted December 18, 2018 4 hours ago, pash said: I've coded up three fully functional unique bots with a fair bit of antiban techniques built into them Such as clicking the tree again every time you get some logs? if(tree != null && tree.interact("Chop down")) { int countLog = getInventory().count("Logs"); sleepUntil(() -> getInventory().count("Logs") > countLog, 12000); }
pash 14 Author Posted December 19, 2018 You're quoting code from the only script that does not have antiban techniques. But yeah, I should have explicitly mentioned that the WillowCutter and YewCutter bots have antiban built in. That said, I've been exploit-testing this bot & I got up to level 60 wc with the OakCutter+WillowCutter bots, but got banned shortly after starting on the YewCutter bot. To be fair I was running them for 28 hours straight... That said, I'm a little sus that Jagex knows every time I use dreambot as the client, so the issue may not even be the antibotting techniques used...
pash 14 Author Posted December 19, 2018 @Evil Bob, just added antibot tech to the Oakcutter as well. Please review if you have time
Evil Bob 5 Posted December 19, 2018 9 hours ago, pash said: @Evil Bob, just added antibot tech to the Oakcutter as well. Please review if you have time Very nice, buy you are still clicking the tree every time you get some logs. if(tree != null && tree.interact("Chop down")) { getMouse().move(new Point(Calculations.random(0, 765), Calculations.random(0, 503))); //antiban log("ANTIBAN: moving mouse to random area"); int countLog = getInventory().count("Logs"); sleepUntil(() -> getInventory().count("Logs") > countLog, 12000); }
vztot 4 Posted December 22, 2018 int countLog = getInventory().count("Logs"); sleepUntil(() -> getInventory().count("Logs") > countLog, 12000); Does clicking every time after sleepUntil is some kind of ban marker? Which method is better?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.