Everything posted by gorgas8
-
runecrafting
How can i check if runecrafting pouches are full or contains essence in it?
-
๐ฅ KHAL SCRIPTS TRIALS ๐ฅ HIGHEST QUALITY ๐ฅ BEST REVIEWS ๐ฅ LOWEST BANRATES ๐ฅ TRIALS AVAILABLE ๐ฅ DISCORD SUPPORT ๐ฅ ALMOST EVERY SKILL ๐ฅ CUSTOM BREAKMANAGER ๐ฅ DEDICATED SUPPORT
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.
-
Client bug?
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..
-
๐ฅ KHAL SCRIPTS TRIALS ๐ฅ HIGHEST QUALITY ๐ฅ BEST REVIEWS ๐ฅ LOWEST BANRATES ๐ฅ TRIALS AVAILABLE ๐ฅ DISCORD SUPPORT ๐ฅ ALMOST EVERY SKILL ๐ฅ CUSTOM BREAKMANAGER ๐ฅ DEDICATED SUPPORT
I wanna try AIO RuneCrafter (24h) user= 200373
-
Client bug?
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.
- Account registration
-
Account registration
Where can i create some emails for runescape accounts? All i tried is blocked...
-
MDMA Willows | Banking | Birdnest | Draynor | Status | 50k xp/h
Perfect, best here for willows. If you gonna update it someday, paint off button andbpath randomization would be good.
-
how to check if
This is perfect. Big thanks!
-
how to check if
How to check if npc is within 1 tile away from me?
- Explv's Dank GUI Tutorial
-
Khal Essence Miner
Indeed, this script spams everything. I believe such behaviour gets your account banned in longer run.
- First script
-
First script
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; } }
-
First script
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?