Jump to content

gorgas8

Trade With Caution
  • Posts

    19
  • Joined

  • Last visited

  • Feedback

    0%

About gorgas8

Profile Information

  • Gender
    Male

gorgas8's Achievements

Newbie

Newbie (1/10)

1

Reputation

  1. How can i check if runecrafting pouches are full or contains essence in it?
  2. It spams wilderness ditch while running, also spams abyss obstacles way too much. The same with pouches, it presses empty to the same pouches twice, sometime even 3 times. And when the rock obstacle animation starts, when its starts to crumble, bot tries to go to different obstacle.
  3. I tried walking.walk(new Position(3027 +random(-2, 2),3709 +random(-2, 2),0)); walking.webWalk(new Position(3027 +random(-2, 2),3709 +random(-2, 2),0)); Position[] PATH = {new Position(3020 +random(-2, 2),3700 +random(-2, 2),0), new Position(3027 +random(-2, 2),3709 +random(-2, 2),0)}; localWalker.walkPath(PATH); it seems, that all methods which involve new Position , will generate 1 random position and will repeat it. while localWalker.walk(3027 +random(-2,2), 3709 +random(-2,2)); generates new position each time its used..
  4. public void antiBan2() throws InterruptedException { int random = random(1,3); if (random == 1) { sleep(random(1000, 2000)); mouse.moveRandomly(random(1000, 2000)); if (random == 2) { sleep(random(1000, 2000)); mouse.moveRandomly(random(300, 1000)); mouse.moveRandomly(random(1000, 2000));} } } This should move mouse 2/3 times, but it works only like 1/100. The same thing happens with path new Position(3027 +random(-2, 2),3709 +random(-2, 2),0) each time its used it should be random, but instead path is always repeated the same and actually changes only like 1/100 time.
  5. Where can i create some emails for runescape accounts? All i tried is blocked...
  6. This is perfect. Big thanks!
  7. How to check if npc is within 1 tile away from me?
  8. Indeed, this script spams everything. I believe such behaviour gets your account banned in longer run.
  9. Thank you, this worked.
  10. Can someone help me to make this case to wait till character is not attacked anymore, everything i try results to errors.. Also it should change world if totalStuff is less than 1. case BUY: sleep(random(2400, 2800)); if (myPlayer().isAnimating() || myPlayer().getInteracting() != null) sleep(random(1400, 2800)); { NPC shopOwner = npcs.closest("Owner"); if (shopOwner != null){ shopOwner.interact("Trade"); sleep(random(2400, 2800)); RS2Widget item = getWidgets().get(300, 2, 4); if (item != null){ int totalStuff = item.getItemAmount(); if (totalStuff >1){ item.interact(false, "Buy 10"); sleep(random(220, 420)); item.interact(false, "Buy 10"); sleep(random(220, 420)); item.interact(false, "Buy 10"); sleep(random(1500, 2500)); } } else{ if (Worlds != null && Worlds[worldCounter] != -1){ worlds.hop(Worlds[worldCounter]); log("World hop."); worldCounter++; } else{ log("int array is null"); } if (worldCounter == 7){ worldCounter = 0; } sleep(random(11700, 13000)); sleep(random(2400, 2800)); } break; } }
  11. Hello, i was creating my very first script by tutorials and free source scripts i found in this forum. I ran it few times to see where it will fail and the next day my account got banned. Well all skills was botted in 1 week, but i believe they detected my script. So i have a question, does mouse moves randomly, human like by default or do i have to make it move like that? Also my path wasnt randomized and had too big gaps, but bot was able to click beyond minimap, maybe this was the case?
×
×
  • Create New...