Everything posted by FrostBug
-
Can reach npc check
Submit a bug report with a proper description, and an example of where it doesn't work properly. (with images/code included). Might be the reason that the webwalker has been acting up, if there is an actual bug here
-
What the fuck are proxys
Indeed, what are proxies? And on the same topic, what is the internet, and what even is a computer?
-
Forever wishing I had this bank..
hoth pls go
-
Challenge Accepted
got the thread in favorites
-
Hardest challenge ever.
I don't understand dutch :| pls translate
-
When your training agility but you get an acceptance letter from Hogwarts
You're*
-
Challenge Accepted
Still buying burnt monkfish
-
rip frostbug
Banned for impersonation
-
Which is the best software for creating scripts?
NetBeans
-
List allPlayers = getPlayers().getAll(); - How to get display names?
getName(). Note that rs names contain special space characters, which do not equal to regular spaces
-
Fruity Barrows (Frost Barrows)
I can't check your auth; try seeing what it says in your Client Area Sounds strange. Add me on skype if this persists, and I'll see if I can help. Did you try restarting the client / see if it works without mirror mode?
-
Fruity Barrows (Frost Barrows)
Yes, you can configure it to switch helms. I can give you a trial, yes. Post here or send me a PM when you want to start it
-
Fruity Barrows (Frost Barrows)
Alrighty. Please be sure to read the OP if you run into any problems (Particularly the Troubleshooting section). Or add me on skype for direct assistance (see profile).
-
Challenge Accepted
Tomorrow is now. Can I have them?
- #scotty4vet
-
Challenge Accepted
Always. What price are you looking for?
-
Gfx Battle - Help us pick a theme.
Cute bugs in snowy environments
-
Fruity Barrows (Frost Barrows)
Check out the FAQ on the first post
-
Challenge Accepted
Buying all burnt monkfish
-
Putting conditionalsleep in a method
public void condSleep(int timeout,boolean statement) { new ConditionalSleep(timeout) { @Override public boolean condition() throws InterruptedException { return statement; } }.sleep(); } condSleep(7000,ctx.getInventory().getAmount("Plank") > amountOfPlankInInventory); The method receives a boolean 'statement', which is evaluated to either true or false at the time of the method call. It's not going to magically change during the execution of the conditional sleep. So either you sleep the full time, or not at all.
-
Fruity Barrows (Frost Barrows)
They are. Can I offer you one (now)?
-
[Stable] OSBot 2.4.48 - Bug Fixes
Thanks @Alek
-
Functional interfaces examples (Function, Consumer, Predicate, Supplier, etc....)
Interedasting. Read a lot about this, but haven't really ever had the need to use them. final IntConsumer PRINT_I = i -> System.out.println(i); PRINT_I.accept(3); // = 3 final LongConsumer PRINT_L = l -> System.out.println(l); PRINT_L.accept(2); // = 2 final DoubleConsumer PRINT_D = d -> System.out.println(d); PRINT_D.accept(2.5); // = 2.5 I reckon these could also be written as final IntConsumer PRINT_I = System.out::println; PRINT_I.accept(3); // = 3 final LongConsumer PRINT_L = System.out::println; PRINT_L.accept(2); // = 2 final DoubleConsumer PRINT_D = System.out::println; PRINT_D.accept(2.5); // = 2.5 For the same effect.
-
Using External Libraries inside OSBot library
Can confirm :E. The SDN isn't going to supply external libraries to users alongside the script
-
FrostHunter
Starting trial. Does not do anything different at black chins (as stated in the OP)