Jump to content

LoudPacks

Members
  • Posts

    926
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by LoudPacks

  1. LoudPacks

    Bank Evaluator

    You should include the # of each item and total number in the dump in addition to the values. Looks cool.
  2. Just be a baller and make them from scratch. I learned a lot doing it that way and now I can make gui's exactly how I want them from scratch in like 10 mins.
  3. private void wealth(String option) { if (getEquipment().interact(EquipmentSlot.RING, option)) { Position current = myPlayer().getPosition(); new ConditionalSleep(1500, 2000) { @Override public boolean condition() { return !myPlayer().getPosition().equals(current); } }.sleep(); } else { for (Item item : getInventory().getItems()) { if (item != null && item.getName().contains("wealth") && item.getName().matches(".*\\d+.*")) { item.interact("wear"); new ConditionalSleep(1500, 2000) { @Override public boolean condition() { return getEquipment().isWearingItem(EquipmentSlot.RING, item.getId()); } }.sleep(); break; } } } }
  4. 1.4 / M lol. No one will sell you unless you use bitcoins so you won't be able to scam. If you're willing to pay that much I would just use one of the gold sites found on OSBot, you might need and ID tho to use paypal which shouldnt be an issue if your a legitimate buyer.
  5. Entity wheel = entities.closest("Spin Wheel"); would work too but RS2Object is better anyway.
  6. Do scripter ranks have a limited amount? I've never had any issues, just out of curiosity.
  7. I still have this on my SIII lol. I like it alot over the stock firmware for sure. I have a 5s tho as my main phone with an upgrade I can use whenever.
  8. It probably wont change. I think they did this to prevent people from farming likes. Maybe they should increase it a little tho.
  9. Any way I can get that method, maybe posted here, so I can add it to the API I use?
  10. How do I check if another player is skulled. I want to use headIcons but you can only check headIcons on NPCs. What do?
  11. Ok so I do a lot of private scripts and local testing for SDN scripts sometimes. To prevent people from stealing the script or not buying it, due to having a local test copy, you can place this into your main.java in run() or whatever your start method is; it checks their username and if the date of the trial has passed: DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); try { if(sdf.parse("2001-9-11").after(new Date()) && getClient().getUsername().equalsIgnoreCase("Maldesto")){ log("Welcome " + getClient().getUsername().toString() + "! " + "You are authorized to use this script until: 9/11/2001"); //normal start methods } else { log("Welcome " + getClient().getUsername().toString() + "! " + "You're not authorized to use this script!"); stop(); } } catch (ParseException e) { }
  12. Do it manually without the help of a builder. Everything in swing should run on OSBot.
  13. Its not time efficient when you could be making a lot more money, maybe the xp isn't as good but its 5x anyway and its not really about xp. Whats the point of just leveling on willows when you'll eventually get banned. Instead you could spend your unbanned time farming something better, yews at least.
  14. make a 1 def range pure. I don't believe much questing is involved.
  15. Why are you botting willows lmao? If your using free scripts I would advise you to purchase a premium. These are all errors due to the script itself.
  16. _..------------.._ /.--'''" " " " " " ''--.\ || || _||___________||_ / _\ | /_ \ |(_)\ | !!!!! /(_)| |____'.__!!!!!_.'____| (____|____) ||| ||| `-' `-'
  17. If your ISP issues dynamic IP addresses you can just unplug your modem for 20 seconds. Check your IP before and after to note the change. If you are assigned a static IP address you'll have to use a VPN, proxy, or VPS.
  18. I dont believe your allowed to release free versions of paid scripts. I might be mistaken but I don't believe so. EDIT: I guess this doesn't apply to downloadable scripts. Im just butt hurt because I have a paid version of something similar to this but with slightly more features
×
×
  • Create New...