Jump to content

bigd123

Members
  • Posts

    46
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by bigd123

  1. I'm trying to use JFormDesigner but unfortunately I don't understand how to use it, and it doesn't have exactly what I'm looking for help needed
  2. Dang thank you learning from the best I guess
  3. I'm trying to make a simple gui, click to enable banking, and select items from a list of things you want to bank. I tried Explvs guide but the GUI part was pretty confusing. Help would be appreciated
  4. I'd like to try a suicide run but I'm too poor to bond it hahaha. I'm going to try to add bank support, shouldn't be too difficult. Thanks man.
  5. I said banking is on the to-do list. I could add a break timer but osbot has that built in already.
  6. I tested it for about 3 hours without any errors
  7. Hello! I made my first working script. It's fairly simple, just steals from the fruit stalls in hosidious and drops all the items when your inventory is full. I'll include the code incase anyone want to take a look and potentially help me Current Features: Basic Theiving XP/Level tracker To add: GUI Option to bank Potentially other farming options Let me know if you have any suggestions! Code: hosidiusthiever.jar
  8. Dude thanks, I was trying to find an explanation so I know what I'm actually writing.
  9. I'm still fairly new to scripting bots, and I'm trying to get conditional scripting to work with, for example a thiever. I see the code for it but I don't understand. For example, instead of: if (getInventory().isFull()) { getInventory().dropAll(); sleep(random(250,500)); } how would I add conditional sleep to get it to sleep until everything is dropped. All help appreciated, thanks!
  10. Dang thank you, and sorry I was busy with other stuff
  11. I'm trying to learn how to script, and am making a simple wine making script to start. This script works sometimes, but the but sometimes refuses to deposit, and just repeatedly openes and closes the bank until it decides to withdraw some random item. Any help appreciated(sorry I didin't comment the code) package core; import java.awt.Graphics2D; import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "bigd123", info = "Simple Wine Maker", name = "Wine Maker", version = 0, logo = "") public class Main extends Script { public int min = 200; public int low = 400; @Override public void onStart() { log("Let's get started!"); } //jug of water 1937, grape 1987 @Override public int onLoop() throws InterruptedException { if (!myPlayer().isAnimating()) { objects.closest("Grand Exchange booth").interact(); log("Opening bank"); sleep(random(min,low)); log("Depositing!"); bank.depositAll(); sleep(random(min,low)); if(inventory.isEmpty()) { log("Withdrawing!"); bank.withdraw(1987, 14); sleep(random(min,low)); bank.withdraw(1937, 14); sleep(random(min,low)); } else { bank.depositAll(); } if(inventory.contains(1987) && inventory.contains(1937)){ log("Closing Bank!"); bank.close(); log("Using items!"); inventory.getItem(1987).interact("Use"); sleep(random(min,low)); inventory.getItem(1937).interact("Use"); sleep(1000); RS2Widget makeWine = getWidgets().get(270,14,38); if (makeWine != null) { if (makeWine.isVisible()); makeWine.interact(); sleep(random(1300,1800)); } } } return random(200, 300); } @Override public void onExit() { log("Bye!"); } @Override public void onPaint(Graphics2D g) { int x = getMouse().getPosition().x; int y = getMouse().getPosition().y; g.drawLine(0, y, 765, y) ; g.drawLine(x, 0, x, 503); } }
  12. As the title says, I don't have much experience but I'm willing to do alot of questing for anyone. I don't have much of a deposit to make but hopefully I can provide my services free to gain trust. I'm also willing to do a little bit of skilling. I prefer if you have the items required on the account already. PM me or leave a comment. Thanks!
  13. I was wondering how the afk mode works? I'm trying to do ammonite crabs and set the afk tile where I want to fight the crabs. When they de-aggro the bot does nothing and the afk timer resets. Thank you.
  14. Can I try the trial please? Thanks
  15. Does the bot have an afk combat mode? As in for example, crabs, it won't actively fight them and only reset when they deaggro. If so this would be the perfect bot
×
×
  • Create New...