Jump to content

Th3

Veteran
  • Posts

    947
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Th3

  1. TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP TRUMP
  2. I'm looking for someone to service several new accounts to get Level 18 Slayer Level 19 Crafting Level 30 Ranged Level 35 Woodcutting or only Level 18 Slayer Level 30 Ranged Please quote me per account for both of those and supplies needed.
  3. I use same gpu and cpu as Imateamcape
  4. Have you tried restarting your sister's laptop?
  5. Is there a version of this for autistic people?
  6. hpbarloopcycle is used to detect if hp bar is visible or not by comparing it to game cycle.
  7. Th3

    sup

    Welcome to youtube, enjoy your stay
  8. try something like this AffineTransform transformer = canvas.getTransformer(); Point p = e.getPoint(); int mouseX = p.x; int mouseY = p.y; double zoom = e.getUnitsToScroll() < 0 ? 1.05 : 1 / 1.05; deltaX = (int) ((transformer.getTranslateX() * zoom) - ((mouseX * zoom) - mouseX)); deltaY = (int) ((transformer.getTranslateY() * zoom) - ((mouseY * zoom) - mouseY)); transformer.setToScale(transformer.getScaleX() * zoom, transformer.getScaleY() * zoom); transformer.translate(deltaX, deltaY); canvas.repaint();
  9. threw this together quick. the @ Override is one line, osbot forums think's it's a member so it separated it public void moveInvItem(int from, int to) { if (from < 0) return; Rectangle toRec = InventorySlotDestination.getSlot(to); getMouse().continualClick(new RectangleDestination(getBot(),InventorySlotDestination.getSlot(from)), new Condition() { @[member=Override] public boolean evaluate() { if (toRec.contains(getMouse().getPosition())) return true; getMouse().move(new RectangleDestination(getBot(),toRec)); return false; } }); } example usage moveInvItem(getInventory().getSlot(ITEMID),SLOTID);
  10. here is a slightly more optimized version of how it should work. We don't need to do extra calculations when they are not needed. private State getState() { boolean fullINV = inventory.isFull(); Player me = myPlayer(); if (me.getAnimation() != -1) return State.WAIT; if (fullINV && !powerChop) return State.BANK; if(fullINV && powerChop) return State.POWERCHOP; if(!Camelot_Trees.contains(me) || !EdgeVille_Trees.contains(me)) return State.WALK; return State.CHOP; }
  11. You probably paid with paypal check.
  12. Which one of you edited the thread? show yourself
  13. This is a simple and elegant script made by @Token and myself. It removes messages posted by @Acerd from the chatbox. To activate simply open browser console (f12) when you enter chat box and copy/paste the following in there. setInterval(function(){ jQuery(".chat-message span:contains('Acerd')").each(function( key, value ) { jQuery(value).parent().parent().hide();});}, 1000);
  14. I'm not talking about configs, there are hooks in the game pack that provides grand exchange data. How else do you think osbuddy gets the status of ge offers.
  15. Gym, meditate and get a gf. They all help with endorphins.
×
×
  • Create New...