atoo Posted November 17, 2015 Posted November 17, 2015 So this is my "antiban" code, not sure if it makes a huge different but i want it to work correctly. else if (random == 4) { status = "IDLING"; tabs.getSkills().hoverSkill(Skill.WOODCUTTING); camera.moveYaw(200 + random(150)); camera.moveYaw(50 + random(40)); tabs.open(Tab.INVENTORY); sleep(800 + random(500)); mouse.setSpeed(50 + random(100)); So my bug is, it keeps rotating the same way all the time, even though i have added random but im not sure what the problem is. Also my bot is moving to fast in my opinion, anyway to change that? (mouse is moving very fast and unlegit)
Bobrocket Posted November 17, 2015 Posted November 17, 2015 You move your yaw to anywhere between 200 and 350 degrees in the first code, and then 50 to 90 degrees. Your camera moves the same way because it's the quickest way to move. 1
atoo Posted November 17, 2015 Author Posted November 17, 2015 You move your yaw to anywhere between 200 and 350 degrees in the first code, and then 50 to 90 degrees. Your camera moves the same way because it's the quickest way to move. Okay that explains it all, Thanks alot