Jump to content

SXForce

Members
  • Posts

    537
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by SXForce

  1. This is both good and bad news. I do have a fulltime job and only have a holiday at the end of this year to work on script conversion (osb 1 to 2). So I was thinking about updating my scripts for OSBot then. Now that is not possible anymore. Anyway, good luck on OSBot 2!
  2. No built-in methods. But you can create your own. This one avoids OSBot missclicks on low CPU PC's: if(client.getConfig(172) == 1) { // If auto-retaliate is off // Open attack tab openTab(Tab.ATTACK); // Define area of retaliate button RectangleDestination retalitate = new RectangleDestination(new Rectangle(569, 358, 150, 46)); // First move to auto-retaliate box client.moveMouseTo(retalitate, false, false, false); // Wait a bit sleep(random(300, 500)); // Then click (this avoids missclicks by OSBot) client.moveMouseTo(retalitate, false, true, false); } Have fun!
  3. Not that I really mind, but why create a script that already exists and has more features. a.k.a. SXAnkous Runes are going to crash sooooo hard now. ty
  4. For less trusted S/W could you make trusted S/W review the code is the less trusted S/W agree to it SW's cannot see other SW's code. ;)
  5. Well, I just got this permission and tested it too. Works great! Anyway, OSBot has a good leverage on scripters with premium scripts. So I don't think any scripter would be that stupid do wrong with this!
  6. , maybe started the script while not logged in? :P
  7. Haha, i made something like this 2 days ago haha. I had to make some long walks for my script and didnt want to do that myself ofc! Nice work anyway.
  8. SXForce

    Raflesia

    What level is he now?
  9. I'am glad that JavaFX is finally used in a bot. It always used to be Swing because it was the easiest way to implement, even though Swing is very old. I'am looking forward to OSBot 2!
  10. Oh yeah, you deserve it man! Good luck!
  11. I use something like this all the time, never had any trouble with it: private void walkPath(ArrayList<Position> path, boolean reverse) throws InterruptedException { Position p = (reverse) ? getFirstReachablePosition(path) : getLastReachablePosition(path); if(p != null) { walk(p); } else { log("Path position is null."); } } private Position getLastReachablePosition(ArrayList<Position> path) { for (int i = path.size() - 1; i > 0; i--) { Position pos = path.get(i); if(canReach(pos)) { return pos; } } return null; } private Position getFirstReachablePosition(ArrayList<Position> path) { for (Position pos : path) { if(canReach(pos)) { return pos; } } return null; } I know the code could be a bit cleaner. :P But it works great and it is not that much code.
  12. Oh my. Bad news. Cool website. :P Didn't know about that. This is mine lol:
  13. Lol what. Excellent job. :P Anyway:
  14. This resulted in: 1 ban, 2 deaths and 4 bots that totally stopped.
  15. The group will exist of approximately 10 people, however this doesn't mean it will be tested by 10 people. Some people might not be able to test certain scripts due to level or quest requirements and not everyone will be able to test on a daily basis. Therefore we will have around 10 people so the process of getting feedback of their tests will be faster, resulting in a smoother and quicker addition to the SDN. We will not require for everyone to have tested a script, everyone who has done some tests will give us feedback which we will use to base our verdict on. Okay, thanks for the explanation. Then i retract my previous statement about the overkill. Good job!
  16. Sounds good, but the script testing with 10 people sounds a bit like an overkill.
  17. Just so you know, Jagex Moderators can be invisible to other players. Thus the client cannot detect them, but they can see you. When they are going back to visible mode and start talking to you, you instantly log off. Yeah, thats suspicious.
  18. I am sorry to hear that. However, account data is stored locally on YOUR computer. OSBot servers cannot access this data itself... There must be malware or some other program on your computer that caused this. Or maybe you are using the same password all of the time. You can cross OSBot of the list anyway.
  19. I support but I think you should just start from $100 as $10 = VIP and $50 dollar = Sponsor. You would receive a Donator rank with Sponsor features that last for a year or so, depending on the amount of money donated.
  20. SXForce

    why?

    Nick is legit... Bought many times from him.
×
×
  • Create New...