Jump to content

Tom

Scripter III
  • Posts

    5330
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by Tom

  1. Tom

    Chatbox Full O_o

    Yeah its full of your shit valkyr All seriousness even I havent had that error I take it back
  2. Tom

    Banned

    Badluck, power of johnny sins was not with you.
  3. Nice mate I do 24 hours with beaks though
  4. Tom

    Keylogged?

    Of course he can be, if hes using an old version of java, or if they have been improved since he could have been 420rekt by a java drive-by.
  5. What would your fusion name be, what powers would you have and how would you fuse? @Czar How would your fusion look like? Johnny Sins Are you good or evil? Both What is your purpose? pfft, truth is a subjective term
  6. Anti Patternisation (is that even a word?) is definitely one of the hardest things to account for in a script, you can always reduce it by a certain extent, and be placed outside the obvious group of bad scripts, but there will most likely be some sort to trace regardless of how much effort you put in.
  7. Bro diamond 3, which is equivalent to silver 5 on NA
  8. ur full of shit acerd go back to chatbox u dog
  9. In over 1000 hours played on the OCE server, I have NEVER experienced such "drophack", so either servers have been mucking up, or someshit aint right.
  10. No I am asking you what server you play on, you blind or sumting?
  11. LMAOAOOOOOOOOOOOOAOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
  12. Oliver man atleast you dont have a scroll bar like me, all dem kids wants the Sins D. Seems like something bugged out man, got like 30 messages instantly
  13. What league server? Don't bother saying EU because that answers my question
  14. If you're up for it, I can give your computer a look over in teamviewer or something, tell you what is unneeded depending if you use it or not, etc. Can discuss more in the chatbox, but unfortunately im banned.
  15. Might be worth creating a thread in the client bugs subforum, that way it will be fixed as soon as possible
  16. Oh shit didn't see that, one moment ill edit the post when i figure something out. public boolean clickRandomXY(Shape region) { Rectangle r = region.getBounds(); int maxX = (int) r.getMaxX() - 1; int maxY = (int) r.getMaxY() - 1; int minX = (int) r.getMinX() + 1; int minY = (int) r.getMinY() + 1; int x, y; x = rand(minX, maxX); y = rand(minY, maxY); if(x < maxX && x > minX && y < maxY && y > minY){ return !mouse.click(x, y, false); //This will return true as long as the client thinks it clicked } //I think you can also do if r.contains(){..................} return false; }
  17. By the look of it you arent actually defining the bounds of the rectangle, its just an empty object. E.g. Rectangle bounds = new Rectangle(465, 340, 100, 20); which defines a small rectangle for my paint.
  18. Tom

    GUI Help

    This isnt exactly the best option either, you don't "need" to instantiate the GUI like that at all really, you can just put new GUI(this), and from within the GUI's constructor set it to visible. Should also be invoked, not just initialized in the onStart
  19. While you're working on your script, have a look into something called Hungarian Notation, or camelCase.
  20. And im ok to assume that you clicked refresh, or restarted your osbot? Edit: You can remove the Thread.state import, it isn't used. You are also importing all contents of java.awt, remove this line as well and just hover over everything that errors, and eclipse will give you the option to import it.
×
×
  • Create New...