Jump to content

FrostBug

Scripter III
  • Posts

    3967
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by FrostBug

  1. nevr 5get That was me, yes. And that is a 1/3000 drop with no use or value
  2. Sent you some help. Should arrive in a few days
  3. 10/10 I use the "Frequently visited sites" page that FireFox has as default on new tabs
  4. Bookmarks? But why Have never had one. Never needed one. Doubt I ever will need one
  5. Yes, all auto-castable spells from the normal spellbook are supported
  6. Please fill in: - OSBot client version - Script Status & Current Task - Screenshot - Log Screenshot and log are quite useful. From your current report I cannot tell what the script is trying to do (what is the cursor doing); if it continuously tries, or even when it tries. Log can be copied directly from the client console, or from the script log located at OSBot\Data\FrostBarrows\Logs\ Thanks in advance
  7. It will not throw an NPE if the widget is not present. It will simply return null
  8. Might be, depending on your gearing. It's typically recommended that you use magic attacks, though. Regardless of melee stats
  9. I'd say at least a year or 2, to output some quality scripts.
  10. you could use something like.. getTrade().getLastRequestingPlayer().interact("Trade"); to interact with the trading player (Don't forget various null / distance / reachability checks)
  11. That was an impressive sentence. 10/10. I didn't understand one bit of it, but it was still somewhat impressive! Grammar and punctuation OP.
  12. Version 1.2.8 - Fixed a mort'ton teleport scroll bug - Added an extra camera check to staircase interaction - Attempted to fix an issue with picking the correct enemy from a pile of barrow brothers
  13. You set the gear up properly in the setup user interface. As noted in the OP, all items used by the setup must be worn as you set it up. This includes ammo.
  14. You've defined 2 global variables in GUI: public JComboBox comboBox; public JComboBox comboBox_1; These are un-initialized, thus null. In the constructor, you create 2 new local variables with the same names, but you do not refer the global variables to them. JComboBox comboBox = new JComboBox(); JComboBox comboBox_1 = new JComboBox(); As a result of this, you're getting NPE's thrown in onStart, as you're accessing the uninitialized global variables. onStart however is catching these exceptions for you, so they are never visible to you (other than the message "Error in onStart") Solution: In the constructor; initialize the global variables rather than creating new local ones.
  15. options.interact() would probably work as well. I think it just clicks the first option if the vararg is empty
  16. You can disable this on your ava device Rip. Guess that didn't work after all then Back to enforced auto-retaliate Please use spoiler tags for huge pastes in the future Thanks. I'm on it. Please use spoiler tags for huge pastes in the future
  17. The targeting bug should be patched now with 1.2.7b
  18. FrostBug

    WTF?

    If you get caught a second time, they'll add an additional 10 days, eh? So they're saying you can keep going.. huh..
×
×
  • Create New...