Jump to content

Abuse

Members
  • Posts

    548
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    100%

Everything posted by Abuse

  1. Links do, not the logic behind it, you need the dev release for it
  2. Will gladly accept this, still offering 10m though. pm sent
  3. Hey, I'm looking for someone to design me a signature that I can use the same way as I am using my current sig, just something that actually looks nice Requirements: Anything goes, surprise me, however the 'GP earned' number cannot have any custom styles (Like shadows, glows, ..) since I am drawing it dynamically onto the signature. It can be a custom font/color but I will need the font file together with the sig. I like technology, movies, metal music, coffee, abstract art, popping colors and/or simplisitc design. What I don't like is any runescape related things heh Reward would be 10m Any takers? Link your portfolio please
  4. That's more likely due to the interaction of your main with your farm. (Personal experience)
  5. Depends on how many, You'll be fine with 2 accounts per single IP. I would go for a VPN/Proxy if you have high-value accounts that you use to farm with. Mirror mode doesn't have any impact
  6. There is no better responsive way atm.
  7. Read this, it'll answer most of your questions: http://osbot.org/forum/topic/106931-sharing-my-ban-experiences/
  8. The answer is yes, IF you trade the gold to your main regularely for extended periods (Personal experience) The chances are extremely slim though.
  9. No, Mirror mode was a hot thing before RS3. At best they got inspired by it In 2007, SRL (VillaVU) had a thing called S.M.A.R.T that offered reflection, which is the same thing
  10. I bid 27m That's a bit too steep for me, sorry
  11. I'm looking for an account with the following stats: 70+ range, 40+ defence ava's accumulator If you are going to make a new one I can supply a bond Other stats don't matter at all Post your offers below
  12. I have made something for the exact same problem, Because setBreakCondition isn't triggered often enough, I have a seperate thread that does the following: Find all trees near me within 1 tile away, If tree found, interrupt() the main thread The interrupt interrupts the web walker, so my code falls back into the main onLoop() There I have some logic that checks for the trees again, if one is found it walks around it or else continues webWalking
  13. There are multiple ways of finding objects One is using an id: RS2Object myObject = getObjects().closest(2565); Another way would be using the object name: RS2Object myObject = getObjects().closest("Bank booth"); and if you want to match on a specific variable of an object you could use filters: Filter<RS2Object> modelIdFilter = new Filter<RS2Object>() { public boolean match(RS2Object n) { return (n.getModel() == 1234); } }; RS2Object myObject = self.getObjects().closest(modelIdFilter); after that you can use myObject.getId() to get the ID value of that object Edit: Just realized when this post was made
  14. OSRS Client and OSRS applets in any browser
  15. *BUMP* Any other offers? Defence levels would be handy too
  16. Logical walkthrough: Save time started startedAt = System.currentTimeMillis() Get Running time runTime = System.currentTimeMillis() - startedAt Convert runtime milliseconds to hours hoursRan = runTime / 3600000 Calculate per hour perHour = itemsMade / hoursRan
  17. Does it have avas? How much would it be including Animal Magnetism?
  18. I'll need it for script development, so cheapest offer wins Preferably with AVA's
  19. Max you'd get for this is around 20m
  20. Perfect, exactly what I was looking for! Thank you
  21. Hey, I was wondering if it's possible to interrupt the main loop from another thread? Let's say I do a sleep(10000); in the onLoop() Is there a possibility to interrupt it?
×
×
  • Create New...