Jump to content

FrostBug

Scripter III
  • Posts

    3967
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by FrostBug

  1. Still buying burnt monkfish
  2. getName(). Note that rs names contain special space characters, which do not equal to regular spaces
  3. 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?
  4. 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
  5. 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).
  6. Tomorrow is now. Can I have them?
  7. #Scotty4SpamWarning
  8. Always. What price are you looking for?
  9. Check out the FAQ on the first post
  10. Buying all burnt monkfish
  11. 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.
  12. They are. Can I offer you one (now)?
  13. 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.
  14. Can confirm :E. The SDN isn't going to supply external libraries to users alongside the script
  15. FrostBug

    FrostHunter

    Starting trial. Does not do anything different at black chins (as stated in the OP)
  16. I do; but you should still go check the requirements regardless :E.. they're in the OP. Started trial now.
  17. Are you enabling Debug mode in the boot options? Doing so is required
  18. Not sure what you mean, then. This is how it has always worked?
×
×
  • Create New...