Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/17/14 in all areas

  1. Dear community, Today we have experienced DNS amplification attack, a kind of DDOS attack. Because we were on CloudFlare's plan for the last couple of weeks, CloudFlare got overrun by the traffic and re-routed traffic and our SSL certificate expired. The forums were directly routed to one of our reverse proxies again, instead of being behind CloudFlare, it caused a warning on most browsers that the website was no longer secure. The bot also suffered from the absence of the SSL certificate, rendering the bot to a non working state. Zach immediately warned me and we tried to solve the issues as fast as possible. Everything should be back to normal. We apologise for the inconvenience and wish you a happy botting continuation. Sincerely, Maxi and Zach
    5 points
  2. No nudes eliot. unless u want them babe.
    4 points
  3. 3 points
  4. Dammit beat me to it lol. I didn't know avatar Korra liked women either.
    1 point
  5. I can't believe that your hand is that hot, you have to brag about it.
    1 point
  6. 1 point
  7. I would like a trial of :Rock Crabs I would like a trial because: I want to train rock crabs and if the script works good im going to buy it. Please i need trail badly.
    1 point
  8. Concept http://osbot.org/forum/topic/63464-anitban-system-concept/ import java.util.Random; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.input.mouse.EntityDestination; import org.osbot.rs07.script.MethodProvider; import org.osbot.rs07.script.Script; import org.osbot.rs07.utility.Condition; import org.osbot.rs07.utility.ConditionalSleep; public class MouseHandler { /** * I tried to keep hovering and delaying away form each other. */ public static final int SECOND = 1000; public static final int MINUTE = 60 * SECOND; private Script sI; private Random random = new Random(); private boolean multiclicking; private boolean hovering; private boolean delay; private long lastUpdated = System.currentTimeMillis(); private long lastChecked = System.currentTimeMillis(); private long shouldUpdate = -1; //add in the string name (OSBot username) boolean so our character has a little profile. public MouseHandler(Script sI) { this.sI = sI; this.delay = random.nextBoolean(); //shouldAllow(name); this.hovering = delay ? false: random.nextBoolean(); this.multiclicking = random.nextBoolean(); this.shouldUpdate = this.randomUpdate(); } public boolean shouldAllow(String name) { return name.length() % 2 == 0; } public int randomDelay() { return MethodProvider.gRandom(8, 7) * SECOND; } public int randomUpdate() { return MethodProvider.gRandom(40, 20) * MINUTE; } public boolean useDelay() { if (!this.delay) { return true; } else{ new ConditionalSleep(randomDelay()) { @Override public boolean condition() throws InterruptedException { return false; } }.sleep(); return true; } } public boolean hoverEntity(Entity entity) { if (!hovering) { return true; }else{ if (entity != null) { return entity.hover(); }else{ return true; } } } public boolean multiclicking(Entity entity, final boolean condition) { if (!multiclicking) { return true; } else{ if (entity != null) { return sI.mouse.continualClick(new EntityDestination(sI.bot, entity), new Condition() { @Override public boolean evaluate() { return condition; }}); }else{ return true; } } } public long getTimeLeft() { long time = this.shouldUpdate - (System.currentTimeMillis() - this.lastUpdated); return time > 0 ? time: -1; } public void update() { if (System.currentTimeMillis() - this.lastChecked > MINUTE) { this.lastChecked = System.currentTimeMillis(); if (getTimeLeft() < 0) { this.hovering = random.nextBoolean(); this.delay = hovering ? false: random.nextBoolean(); this.multiclicking = random.nextBoolean(); this.lastUpdated = System.currentTimeMillis(); this.shouldUpdate = this.randomUpdate(); } } } public boolean allowHovering() { return this.hovering; } public boolean allowDelay() { return this.delay; } public boolean allowMulticlicking() { return this.multiclicking; } }
    1 point
  9. Cmon @MGI post something, do it!
    1 point
×
×
  • Create New...