Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. Was looking for a cd like this earlier. The 176 billion company doing a promotional 10k sweepstake on a release date like this kinda made me laugh but whatever :p
  2. Has OSBot been tested on Windows 10 yet? If so, how did it go? @devs, would you advise us to not update immediately / do you expect OSBot to work on Windows 10?
  3. Sounds like a delayed ban.
  4. I'm currently going through Torchlight 2 and the Bomberman franchise. I'll probably give Half Life 2 a shot later this year, will be my first FPS game since Halo 1 lel :p
  5. Considering my name was mentioned here I'll just add the following (to avoid any confusion whatsoever). At no point did I ask for any account information. At no point was I given any account information. Full skype log can be given upon request, but I don't think ridnem will dispute any of these facts.
  6. Did you configure your phone properly?
  7. Did you follow this guide? http://developer.android.com/tools/device.html
  8. Did you follow this guide? http://developer.android.com/tools/device.html
  9. Good call, didn't know about that one. For those who also don't know about it(yet): /** * Compares two {@code int} values numerically. * The value returned is identical to what would be returned by: * <pre> * Integer.valueOf(x).compareTo(Integer.valueOf(y)) * </pre> * * @param x the first {@code int} to compare * @param y the second {@code int} to compare * @return the value {@code 0} if {@code x == y}; * a value less than {@code 0} if {@code x < y}; and * a value greater than {@code 0} if {@code x > y} * @since 1.7 */ public static int compare(int x, int y) { return (x < y) ? -1 : ((x == y) ? 0 : 1); }
  10. 1. getMouse().getEntitiesOnCursor().contains(...); Might do the trick, or you could derive it from the action displayed in the top left corner, however I'm not sure whether the API supports that out of the box. 2. You could get the 3D bounding boxes of multiple entities' models and obtain a new model(s) by subtracting overlapping ones.
  11. Has been fixed in the upcoming SDN version
  12. You probably need to add null checks and .exist() checks on top of the action one to the predicate.
  13. I'll be giving it a spin once I'm done with Torchlight 2 :x I'll be giving it a spin once I'm done with Torchlight 2 :x
  14. Sounds like something you should have thought about BEFORE having started the project :x
  15. Optional<NPC> lobster = getNpcs().getAll().stream().filter(o -> o.hasAction("Cage")).min(new Comparator<NPC>() { @Override public int compare(NPC a, NPC b) { return getMap().distance(a.getPosition()) - getMap().distance(b.getPosition()); } }); if(lobster.isPresent()){ lobster.get().interact("Cage"); }
  16. Open :| (no threads allowed for it :p)
  17. You can use ActiveXObject objects in js and get the MAC and hardware info if the PC is using IE (not sure about the other browsers), I've also read about WebGL exploits to get hardware info (primarily GPU stuff but I think the article also mentioned CPU info) and that API is cross-browser so... Not sure if JavaScript scripts count as additional downloads either considering you can embed them in HTML files. The web ain't all that safe :x
  18. GG,! PS: I'm gathering some more information and scenarios with test scripts concerning failling and/or slow interactions, I'll post a thread soon-ish.
×
×
  • Create New...