Jump to content

Kronos

Members
  • Posts

    173
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Kronos

  1. Kronos

    OSBot Logo

    I think a community like this deserves an actual logo instead of just plain old text. I'd be happy to design a few samples but there's no point if its not a good idea. What does everyone think?
  2. You should try and use names instead of ID's wherever possible. Otherwise Jagex will try and fuck you after an update
  3. Kronos

    BETA v1.7.21

    Please add this when you get time: http://osbot.org/forum/topic/8235-login-handler-rs-update/ Thanks, would be a great failsafe!
  4. Sleep deprived? I thought they renamed that to "Programming" :P
  5. The only correct answer I've seen on this topic Also "user.dir" will give you OSBot's directory: String fs = System.getProperty("file.separator"); String dir = System.getProperty("user.dir") + fs + "scripts" + fs + jarName; All in all quite a good updater though. A bit sad that this isn't already included in the client. Normally you would write the file to a temp location just in case the existing one is currently being used, but in OSBot's case you don't need to.
  6. if (!client.getInventory().contains(PURE_ESSENCE)) { You forgot to add the ! for not. If inventory doesn't contain essence -> withdraw essence Also, if you're only wanting a full inventory of essence you would use: if (!client.getInventory().isFull()) { If inventory is not full -> withdraw essence.
  7. Got an ETA? Seems there's enough support.
  8. Support. I'd be happy to design any GFX you may need
  9. I don't think he has stack amount hooked fully though. Just by looking at his debug it seems it just reads it from the text eg: 145k or 12m ect.
  10. It does? It's just the way that the interfaces are setup in the api, they don't allow child interfaces for child interfaces, or at least a way to get the id of the child interface, and since the inventory on the trade screen is part of a child, that is on the trade screen, we cannot get the items for it. Example Parent 0 (trade screen) -child 1 (username) -child/parent 2 (Left side container) --child 0 (Items) No way for us to access the (items), since you RS2InterfaceChild doesn't support children. Correct me if im wrong. According to @Merccy it actually required a new hook. He's working on it now.
  11. What does it use then? Ive searched the API and found no dedicated methods to do this. Could you give us a hint @XavierM?
×
×
  • Create New...