Jump to content

FrostBug

Scripter III
  • Posts

    3967
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by FrostBug

  1. You can override shouldActivate to verify with your script whether or not now is a good time to start a break try { this.bot.getRandomExecutor().registerHook(new RandomBehaviourHook(RandomEvent.BREAK_MANAGER) { @Override public boolean shouldActivate() { return super.shouldActivate() && canStartBreak(); } }); } catch (Exception ex) { //Break manager is not enabled log("Failed to modify break handler"); } It's up to you to implement the canStartBreak method
  2. All the complaints I get are posted here, more or less. So you can read thru the thread if you want
  3. FrostBug

    FrostHunter

    Give the devs some time to patch all the hooks after the update
  4. Well, there aren't rly many good options left. I personally made some API around java 'Properties'
  5. That won't fly with the SDN either. Method names and class members have their identifiers changed by the obfuscator (including serialVersionUID) In other words, you wont be able to load objects serialized by an earlier osbot client version
  6. GSON probably uses reflection somewhere, even if you dont use that particular method, if the classloader sees that any of your classes use it, it will act up.
  7. It will stop trying to log back in if you as much as look at it the wrong way
  8. My guess is that you're using an external library to parse JSON? And that library probably uses reflection, which requires the -allow reflection argument when opening the client. But if this is the case, ext. libraries aren't copied to the SDN regardless
  9. They knew the Java language beforehand probably
  10. You could probably get Axife to do something like that. Keep it to inventory stuff tho, clicking stuff on screen (objects/npcs) with an autoclicker is asking for trouble
  11. String[] trees = {"Tree", "Oak tree", "Willow tree", "Maple tree", "Yew tree", "Magic tree"}; int level = getSkills().getStatic(Skills.WOODCUTTING); RS2Object tree = getObjects().closest(trees[level / 15]);
  12. Well, it very well could be mirror. It's known to cause certain issues with entity loading, tho that was mostly in the past. Is anyone else having this problem? No
  13. ^ http://osbot.org/forum/topic/73332-quick-hopper/
  14. Should be a right click option in game settings
  15. You should just go to settings ingame and reset your hotkeys to default
  16. Does this happen with injection mode as well? Or are you by any chance in resizable mode or not-default zoom? Set up your hotkeys
  17. try changing getWalking().webWalk(rockTest.getPosition()); to getWalking().webWalk(rockTest.getArea(2));
  18. So, is it logging the "Mining rock at dist..." text?
  19. You fk'd up fren.. Wrong account I'll have a look, thanks
×
×
  • Create New...