Jump to content

Bobrocket

Members
  • Posts

    1664
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    100%

Everything posted by Bobrocket

  1. It's a stupid account, but I just want to see what it's worth. Been botted 100%, has prospector helm + 150k in bank. No membership; waterfall quest, druidic ritual, cooks assistant, and rune mysteries done.
  2. Lads let's start a merching clan right here... Guam tar, current price like 2gp but i expect it to rise to 200000000000000gp so buy it all at around 5gp :^) (pls buy my guam tar)
  3. Just flip merch. Shit like zulrah scales get you rich fast.
  4. Looks like you may need to set the bounds for the labels?
  5. Are you adding the jar to the build path instead of in the fike system?
  6. I don't think Camera#toEntity accepts an RS2Object as a parameter (could be wrong). Instead, use Entity for objects and NPC for NPCs: Entity door = getObjects().closest(new Filter<Entity>() { //match code }); if (!door.isVisible()) { getCamera().toEntity(door); } if (!door.hasAction("Open")) { log("Door is open"); return false; } door.interact("Open"); Position p = door.getPosition(); //Conditional sleep -> check objects at position p, see if they have action "Close" log("Door should be open"); return true;
  7. The API states that #getItem() returns a type of item. The method you want is ItemContainer#getAmount(String ... items) Usage: int amt = getInventory().getAmount("Jug of Water");
  8. Facing camera to NPC: getCamera().toEntity(NPC); Is your jug of water noted? inventory.getItem() returns the first found item, so you could be getting an unnoted one (hence getting 1), and none should very well be 0 as there are 0 jugs.
  9. Here's what it looks like, (mostly) complete. Progress bar is a WIP, and I also want to add a few more elements to the paint. This, however, will do. Thanks!
  10. I always personally leave my GUIs open so people can screenshot them for bug reports, but I believe you can set it to close the GUI without ending the script.
  11. If you post your additions in the SmartKeyboard thread I'd be glad to go through and implement them
  12. Within GUI (textbox as an example) if (textBox.getText().isEmpty()) { JOptionPane.showMessageDialog(null, "You must fill out this text box first!"); return; } The return; will stop execution of the method. I personally have a boolean in my main class, guiWait, which I then set from true to false when the GUI has applied the settings. I do something like this: GUI g = new GUI(); public static boolean guiWait = true; onStart() { g.setVisible(true); while (guiWait) { sleep(400); } } //GUI //Button actionPerformed if (conditionsMet) { ArbitraryScriptClass.guiWait = false; } else { JOptionPane.showMessageDialog(null, "You must select a preset or define a monster first!"); }
  13. GUI g = new GUI(); onStart() { g.setVisible(true); while (g.isVisible()) { sleep(400); } }
  14. Yes. Blast furnace is a lot more money, but requires start up cash.
  15. Motherlode is a great way to make 100k+ per hour without any requirements other than 30 mining. No need for fuckloads of items, just a pickaxe.
  16. Context: I go up to kids on gmod dark rp servers and tell them I will pay them vast quantities of money in exchange for them singing. To them, these pixels mean everything, so they do it. I also got this kid to rap Rap God, although you can hear my shitty laugh half way through it so I decided not to upload that.
  17. Bobrocket

    legend

    This is so fucking cringeworthy
  18. Most big brand android phones have their own software like Kies. Helps with drivers and moving files and such easily. Good luck!
  19. You can use a tool called Proxifier to tunnel specific websites through a proxy (eg *81.runescape.* as a rule will enable your proxy for OSRS world 81)
  20. As I wrote this class, I would recommend it. I do believe, however, that the default OSBot keyboard class is slow itself (which SmartKeyboard uses) - I'll see what I can do about speed later on, however I have other priorities as of late.
×
×
  • Create New...