Jump to content

CrashBandiboob

Members
  • Posts

    46
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by CrashBandiboob

  1. Hey! This looks good, any chance of a trial please?
  2. Script has been working fine for me for ages, but trying to start it up today it goes to the world switcher page and just hangs. The status stays as "Loading...." The error in the console is: [ERROR][Bot #1][04/27 04:59:56 PM]: Failed to load the worlds, container widget not found Any ideas @FuryShark?
  3. Would love a sand crabs trial!
  4. Thanks for the trial, works well. Will definitely look at purchasing. 12 hour proggie, rates will be reduced as this included a few 30 min breaks:
  5. Would love a trial if possible - thanks man
  6. Doesn't seem to be working for me since the update. It doesn't seem to find any ground items when they are there. Is this just me?
  7. Simple bot, tells everyone to stay home to help stop the spread of the CoronaVirus. Go to a popular area and run the script to save lives. Just types in chat the following two messages: red:wave:Stay safe, stay home, save lives. cyan:wave2:Help stop the spread of Coronavirus. Download: http://www.mediafire.com/file/etook50lckwi774/CoronaBot.jar/file
  8. Well this is significantly quicker, like 3 seconds for a full inv instead of 40 public void dropAll() { getKeyboard().pressKey(16); mouse.click(577,225, false); mouse.click(612,229, false); mouse.click(654,230, false); mouse.click(701,230, false); mouse.click(700,262, false); mouse.click(655,267, false); mouse.click(614,265, false); mouse.click(568,265, false); mouse.click(577,300, false); mouse.click(624,297, false); mouse.click(662,295, false); mouse.click(700,298, false); mouse.click(704,337, false); mouse.click(668,338, false); mouse.click(624,335, false); mouse.click(574,343, false); mouse.click(576,377, false); mouse.click(619,370, false); mouse.click(664,376, false); mouse.click(713,365, false); mouse.click(705,405, false); mouse.click(657,407, false); mouse.click(627,408, false); mouse.click(659,410, false); mouse.click(581,437, false); mouse.click(618,449, false); mouse.click(661,448, false); mouse.click(709,443, false); getKeyboard().releaseKey(16); }
  9. I find the getInventory().dropAll() function to be quite slow at dropping things using the shift-click way. Is there are more efficient way of coding this to drop items in your inventory?
  10. Just curious... What would an account like this be worth?
  11. Added! Download link in OP. Not tested huge amounts but works - let me know if anything needs updating/changing
  12. BodyCraft v0.5 By Crash Bandiboob Simple script that crafts body runes from Edgeville bank. How to use: Start in Edgville bank You MUST be wearing a body tiara If crafting runes: have Pure Essence in bank (does not work with rune essence) If crafting tiaras: have body talismans and tiaras in bank What it does: Withdraws materials from your bank in Edgeville, runs to the ruins by barbarian village, crafts runes/tiaras, banks them and repeats! DOWNLOAD: https://www.mediafire.com/file/uxf7ezuano0lkfk/BodyCraft.jar/file Show me your progress reports below!! If anything is broken or you want some extra features let me know below! Progress reports: Changelog: v0.5 - Bug fixes - Script now stops when out of materials - Final progress report tells you how many runes were crafted (need to fix for tiaras) - Added GUI - Can now also craft tiaras
  13. Here's a bonus one for you to get to 50 fletching: https://www.mediafire.com/file/venw4x3ly4hskqv/BandiFletch.jar/file https://www.mediafire.com/file/venw4x3ly4hskqv/BandiFletch.jar/file http://www.mediafire.com/file/venw4x3ly4hskqv/BandiFletch.jar/file Fletches bows at the GE
  14. Oh wow! I should really read through the API doc one of these days....
  15. Changing source and using the official osrs database. Came across this snippet of code but can't wrap my head around it: private Optional<Integer> getPrice(int id){ Optional<Integer> price = Optional.empty(); try { URL url = new URL("http://services.runescape.com/m=itemdb_oldschool/api/catalogue/detail.json?item=" + id); url.openConnection().setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36"); url.openConnection().setUseCaches(true); BufferedReader br = new BufferedReader(new InputStreamReader(url.openConnection().getInputStream())); String[] data = br.readLine().replace("{", "").replace("}", "").split(","); br.close(); price = Optional.of(Integer.parseInt(data[0].split(":")[1])); } catch(Exception e){ e.printStackTrace(); } return price; }
  16. I've tried playing around with many of the snippets in the snippet section but just can't seem to get anything working that pulls the price of an item. What I'm trying to do (think I should be doing...) is looking up the item name or ID against the RSBuddy data (https://rsbuddy.com/exchange/summary.json) and then outputting this as an integer. Can anyone point me in the right direction?
  17. If anyone would like to see any of the scripts as proper release let me know and I'll clean them up and test them properly!
×
×
  • Create New...