Jump to content

Juggles

$100.00 Donor
  • Posts

    9600
  • Joined

  • Last visited

  • Days Won

    27
  • Feedback

    100%

Everything posted by Juggles

  1. I use low resource mode on CLI and that seems less laggy and reduces CPU alot
  2. //Make 2 areas private final Area WoodCut = new Area(0,1,2,3); private final Area Bank = new Area(4,5,6,7); if (getInventory.isFull) { if (!Bank.contains(myPlayer) { getWalking.webWalk(Bank); } else { //BankCode } if (!getInventory.isFull) { if (!WoodCut.contains(myPlayer) { getWalking.webWalk(Woodcut); } else { //Chop }
  3. Checking agility xp every 3 minutes to not get banned, great anti ban If you do what Jack said, you should be fine but your clicks will be exactly the same each time as opposed to a bot which randomizes your clicks.
  4. Thanks, I'll be editing the script soon when I have time. Just wanted to get it uploaded for now.
  5. It does oak planks in Varrock It will sell oak planks but not buy more oak logs Uses Varrock teleport tabs to go faster. I haven't used it in a long time so let me know if any bugs occur. If people actually use it, I might add more features. Report the bugs and I'll fix it. I'll also be rewriting the GE support in it because its not very good right now but should work. ps *Pls don't decompile, the code is so ugly because I made it in April and I was a pleb* Download Link: https://www.mediafire.com/?hg40b5eoud0p0x5
  6. 61 crafting 40 defense 49 firemaking 5 herblore 65 magic 60 mining 55woodcutting
  7. Lemme use it to make the script and I'll give you a free auth to the zulrah script when its done ;)
  8. new ConditionalSleep(60000) { @Override public boolean condition() throws InterruptedException { return !getInventory.contains("Raw trout") || getDialogue().inDialogue(); } }.sleep(); I believe your guy stops animating between fishes cooked. I'm not sure on this but that might be why it didn't work for you.
  9. Rip Acerd Nice release tho
  10. You are now in first place for the gold!
  11. 1) Few problems in your script, it will keep clicking the fishing spot bc you aren't checking if you are fishing. Check if your player is animating or not for this. 2) YOu don't check if you've done the previous steps, you will just keep looping non stop. 3) You're missing brackets on your widgets 4) Why are you dropping 4 items? 5) Your script literally is just linear right now. Look into conditional sleeps and using if/else statements to check if you're doing an action. 6) Do the first few modules Code Academy to learn the basics of Java first. It will help you in the long wrong. 7) Use pastebin, code is ugly on OsBot and not formatted 8) Shouldn't "fire" be capitalized?
  12. add this import import org.osbot.rs07.api.ui.RS2Widget; I code on Mac so this is what I do Whenever something is red, see if you need to add the import. Click on the red line, hold Option(ALT on windows?) and press enter it will add the import.
  13. Settings<Options<Debug<Tick Widgets on Now when you hover over things, it will give you numbers from a box. Find the #s it gives you and use them in if (getWidget.isVisible(#,#)) { getWidgets().interact(#,# "Cooked All"); }
  14. You want to sleep until inventory contains 27 cooked fish (fishing rod is 1 space) or until you are in dialogue from leveling up. new ConditionalSleep(60000) { @Override public boolean condition() throws InterruptedException { return getInventory.getAmount("Name of fish")>=27 || getDialogue.inDialogue; } }.sleep(); You can use a widget to cook if (getWidget.isVisible(#,#) { getWidgets().interact(#,# "Cooked All"); }
  15. To select item, use: inventory.interact("Use", "Name of Fish"); Use on the fire. I think fire is an object? Not sure I have never cooked. getObject.closest("Name of whatever fire is").interact("Use"); You can use a widget to cook if (getWidget.isVisible(#,#) { getWidgets().interact(#,# "Cooked All"); } And what do you mean until inventory is empty? Like when you drop after cooking? getInventory.dropAllExcept("Fishing rod Name");
  16. Bot clicks regulary on NPC it is attacking (when i think that it should only be once) If another NPC of the same name comes closer then the one im attacking the bot tries to switch to that npc, even though it is still under attack. If (myPlayer.isUnderAttack) { //doNothing } else { //Attack NPC } This will fix both your problems because it won't attack in combat. This is very basic, but should work for now. Of course you can add other things. As Acerd said, It would be helpful if you post your PasteBin.
  17. Script can randomize click timer while auto clicker is always at a set time.
  18. Hi Merlo, hope to see you one day in the chatbox
  19. Don't make bald tutorial island guys Don't make your stats look bot like Use private scripts (Depending on what you're botting ) Make it world hop when another white dot appears on minimap Don't bot 24/7 Don't bot common things like Woodcutting, Runecrafting, Mining, Red chins, Blast Furnace,etc or expect to get banned fast. Find your own method and buy a private script or learn how to code. Test accounts and see how they ban you. Make adjustments accordingly. Don't check hunter xp every 3 minutes
×
×
  • Create New...