Jump to content

Soldtodie

Members
  • Posts

    505
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Soldtodie

  1. look at the docs RS2Object getUID() or XInteractableObject getIdHash or does anyone know how i can get the full RS2Object with the XInteractableObject?
  2. Can i get the object id from the object uid? Thanks.
  3. Ahh thanks I looked for random thinks etc. but not for antiBan lol. Shame on me. getAntiBan().unregisterAllBehaviors();
  4. How can I disable the random mouse and camera movement? Thanks.
  5. Thanks to Khaleesi Can be closed!
  6. How can I get the polygon of an object? Thanks.
  7. Thats the problem of a non open source api.
  8. Warum muss diese ****** eine Deutsche sein?!
  9. Title: The minimum code to make a script I don't think he will add onMessage, because it's not needed.
  10. Yeah, because sometimes with 16 it will click on the toggle run orb.
  11. Doesn't work, you can change the windows date to use it.
  12. http://www.forbes.com/sites/gordonkelly/2014/09/09/iphone-6-vs-iphone-6-plus-what-is-the-difference/ You must decide which one is better for you, a bigger or a smaller one.
  13. getBot().getScriptExecutor().isPaused()
  14. Yeah. But with this you can get the selected item.
  15. Lol? I wrote hop and not move^^.
  16. How can I let the mouse hop to a certain position for mouse key dropping? mouse.hop(x, y) doesn't exist.
  17. public boolean deselectItem() { if(inventory.isItemSelected()) { return mouse.click(inventory.getMouseDestination(getSelectedItemSlot())); } return false; } public int getSelectedItemSlot() { if(inventory.isItemSelected()) { for(int slot = 0; slot < 28; slot++) { Item it = inventory.getItemInSlot(slot); if(it != null && it.getName().equals(inventory.getSelectedItemName())) { InventorySlotDestination is = new InventorySlotDestination(getBot(), slot); for(int x = is.getBoundingBox().x; x < is.getBoundingBox().x + is.getBoundingBox().width; x++) { for(int y = is.getBoundingBox().y; y < is.getBoundingBox().y + is.getBoundingBox().height; y++) { if(getColorPicker().isColorAt(x, y, new Color(255, 255, 255))) { return slot; } } } } } } return -1; }
  18. https://osbot.org/forum/topic/59713-deselect-item/
  19. Lol sry I failed. Can you post an example please?
  20. I override it but it doesn't stop during executing.
×
×
  • Create New...