Jump to content

FrostBug

Scripter III
  • Posts

    3967
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by FrostBug

  1. You'll find most of the things you need available from the MethodProvider
  2. If you need to interact with a rockcrab fishing spot, use the Npcs class, eg. getNpcs().closest(fishing spot name or ID).interact("catch"); obv. with some added null checks and what have you. Interacting with an NPC will execute an InteractionEvent, which will walk to the npc as needed. If you really just need to interact with a position ("RSTile"), you could do it by coordinates new Position(x, y, z).interact(bot, "Walk here"); alternatively to walk to the position, use the Walking class, which has a number of methods that accept positions and areas.
  3. Committed a fix for some button texts that were glitching out
  4. Script version 1.5.0 - Graphical redesign of settings interface - Added support for Combat & Super combat potions - Added support for Stamina & Super energy potions - Added support for a secondary weapon for special attack - Added a route using the arceuus barrows teleport - Added an option for above route to teleport out of the tunnels - Added mind runes to the loot priority option - Using protect from melee for tunnel traversal is now optional - Can now equip bolt racks to make space - Now gets killcount in the room with lowest levelled enemies on route - Fixed an issue with banking barrows loot also used in gear setups - Fixed an issue with remembering where the tunnel is after emergency bank runs __________________________ The script now uses local image resources instead of online resources; if there are any issues with this transition, I will try to fix them ASAP when the update goes live. Additionally, if there are any issues with resize-behavior with the new settings UI, please report that to me as well.
  5. No, that'd be pretty slow. All the available routes are listed in the OP, and another is being added with the new update in about an hour.
  6. use the image insert tool or just surround it with tags
  7. It's pretty much priced according to the amount of work that goes into making and maintaining it. I haven't really had many complaints about the price before, but if more people feel the same way, I may be open to change it. Maybe a poll is in order
  8. Well, just haven't removed it from back when they were enabled by default
  9. Not sure, but getAntiBan().unregisterAllBehaviors(); isn't deprecated
  10. Should be coming out with a semi-large update this weekend. Look forward to it
  11. Also, alternatively to getting the screen size, setting null as the relative location will put the frame in the center of the screen. frame.setLocationRelativeTo(null)
  12. Well, if need be, a kind bug has a snipped lying around for world hopping in the snippets section. Doesn't avoid tournament worlds atm though
  13. Action listeners on text fields only trigger when you hit ENTER. Some approaches you can use are either to make the textfield a class member, and use its value directly in the closest filter; or use an event on the button instead. Though in reality you should probably redesign the whole thing, and separate the user interface code from the main script class.
  14. The proper section would be Client Bugs & Suggestions
  15. ∞The limit is on your osbot account, not your script. VIP = Unlimited
  16. Unfortunately I can't do much about the mouse movement algorithm, as it's implemented by the client itself. At best we can make suggestions in the suggestions/bugs subforum, but they are probably already aware.
  17. That looks extremely unsafe. Bank opening failure = permanent stuck
  18. If you need to enable run, use the method in the WebWalkEvent Avoid using the deprecated walking methods, as they will be removed soon. You can find the available ones here
  19. private void drawProfitH(Graphics2D g, int profit, float hours) { g.setColor(Color.PINK); g.drawString("Profit/h: " + (profit / hours), 10, 100); } np m8. I customized it to fit your preferences as well.
  20. Don't be a greyname, vote !
  21. Usually wait until everything finished airing; I don't have what it takes to wait a week between episodes :E
×
×
  • Create New...