Jump to content

Celeos

Trade With Caution
  • Posts

    2041
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Celeos

  1. Just finished 's order. ^_^
  2. Just a sig. ;)
  3. Welcome to my graphic shop! This is my grand opening of my graphic shop where I provide quality graphics for OSBot! Prices (all prices are in OSRS gold) Avatar - 500K Signature - 1500K Skype celestial.osbot Portfolio
  4. Video is more hilarious than the dialogue.
  5. imma rob ya fool.
  6. Fatigue 24/7.
  7. Okay ladies.
  8. Who is this guy.
  9. Have the current logo but instead of red, use blue???
  10. God-like.
  11. Mod can close. Got my signature!
  12. Celeos

    k.

    im so mad
  13. Celeos

    k.

  14. Like I mentioned previously, you can easily change my code to fit your needs...
  15. public static void drawInventoryItem(final Graphics2D g, final int id) { final Item[] items = client.getInventory().getItems(); for (int i = 0; i < items.length; i++) { if (items[i] != null && items[i].getId() == id) { final Rectangle r = client.getInventory().getDestinationForSlot(i); g.drawRect(r.x, r.y, r.width, r.height); } } } Looks good. This is what I like to use. Of course, you can always change it to fit your needs/preferences.
  16. I'm so wet.
  17. Aww I was beginning to think I was getting popular.
  18. Wouldn't mind since the admins were involved in RSPS.
  19. @Swizzbeat for CBA. for super.
  20. Maybe because of this:
  21. Way to ruin my Christmas fucker.
  22. It's better to use names for entities because entity IDs change frequently (no RS update required). Also: RS2Object bank = closestObject(BANK_BOOTH_ID); if (bank != null) { if (bank.interact("Bank")) { while (!client.getBank().isOpen()) sleep(250); client.getBank().depositAllExcept("Bronze pickaxe"); } } to: RS2Object bank = closestObjectForName("Bank booth"); if (bank != null) { if (!client.getBank().isOpen()) { bank.interact("Bank"); sleep(250); } else { client.getBank().depositAllExcept("Bronze pickaxe"); } } There's no need to create a while loop. Nice guide nonetheless.
  23. Beatswizz
×
×
  • Create New...