Everything posted by Botre
-
Microsoft Windows 10 Countdown
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
- OSBot & Windows 10
-
OSBot & Windows 10
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?
-
DO NOT USE ATM
Sounds like a delayed ban.
-
What other games do people play?
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
-
Dispute against Sinatra
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.
- Sup
-
Java Eclipse Question
Did you configure your phone properly?
-
Java Eclipse Question
Did you follow this guide? http://developer.android.com/tools/device.html
-
Java Eclipse Question
Did you follow this guide? http://developer.android.com/tools/device.html
- [Price Check] 3 accounts
- [Price Check] 3 accounts
-
What is allowed in a script
Obviously a no no.
-
Differentiating between fishing spots
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); }
-
A few questions regarding models
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.
-
wew gj mald
- [Free] Gnome Agility Course
Has been fixed in the upcoming SDN version- Differentiating between fishing spots
You probably need to add null checks and .exist() checks on top of the action one to the predicate.- Path of Exile - Tempest
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- Submitting feedback tab
Sounds like something you should have thought about BEFORE having started the project :x- Differentiating between fishing spots
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"); }- Request a free script now!
Open :| (no threads allowed for it :p)- What Informartion Can a Website Get?
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- [Question] is there a way to accurately get / set your combat style (agressive, defensive, ...)
Noise, thankserino- [Question] is there a way to accurately get / set your combat style (agressive, defensive, ...)
^Title - [Free] Gnome Agility Course