Jump to content

lrdblk

Lifetime Sponsor
  • Posts

    94
  • Joined

  • Last visited

  • Feedback

    100%

About lrdblk

Profile Information

  • Gender
    Male

Recent Profile Visitors

2206 profile views

lrdblk's Achievements

Iron Poster

Iron Poster (3/10)

13

Reputation

  1. I can look it over if you want. I don't have scriptwriter but i know some shit
  2. Im trying to write to a file using this code try { Files.write(Paths.get(ClassLoader.getSystemResource("output.txt").getPath()), username.getBytes(), StandardOpenOption.APPEND); }catch (IOException e){ printOut(e.getLocalizedMessage()); } But im getting this error Exception in thread "main" java.nio.file.InvalidPathException: Illegal char <:> at index 2: /C:/Users/stabo/IdeaProjects/ACC/out/production/ACC/output.txt at sun.nio.fs.WindowsPathParser.normalize(WindowsPathParser.java:182) at sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:153) at sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:77) at sun.nio.fs.WindowsPath.parse(WindowsPath.java:94) at sun.nio.fs.WindowsFileSystem.getPath(WindowsFileSystem.java:255) at java.nio.file.Paths.get(Paths.java:84) at main.Main.main(Main.java:25) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) Whats wrong with my path?
  3. Thanks! I don't have much experience with web stuff haha
  4. Can anyone help me click the reCaptcha anchor on the runescape account creation page? I'm using Selenium, here's my snippet WebDriver driver = new FirefoxDriver(); WebDriverWait wait = new WebDriverWait(driver, 40); wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//*[@id=\"recaptcha-anchor\"]/div[5]"))); driver.findElement(By.xpath("//*[@id=\"recaptcha-anchor\"]/div[5]")).click(); I've also tried searching by ID and clicking but it still doesn't work. I've made sure to wait until the page is fully loaded as well
  5. I made this snippet for my wood cutter. You can use the code to check how many people are surrounding any entity. First import import static java.lang.Math.toIntExact; Here is the snippet. e = the entity you are checking areaSize = the size of the area around the entity you want to check. private int peopleAroundEntity (Entity e, int areaSize){ return toIntExact(players.getAll().stream().filter(x -> e.getArea(areaSize).contains(x)).count()); } And this is how I used the snippet private Predicate<RS2Object> bestTree = tree -> tree != null && chopArea.contains(tree) && tree.getName().equalsIgnoreCase(treeType) && tree.hasAction("Chop down") && peopleAroundEntity(tree, 2) <= 3; java.util.List<RS2Object> tree = getObjects().getAll().stream().filter(bestTree).collect(Collectors.toList()); Then from there you can sort the list as you want. For this script, I have it sorted by distance tree.sort(Comparator.<RS2Object>comparingInt(a -> getMap().realDistance(a)) .thenComparingInt(b -> getMap().realDistance(b))); The whole script can be found on my github https://github.com/MeatRainbow/Wood_Chopper Hope this helps someone
  6. flagged IP meaning anyone who uses that IP is under additional scrutiny. They aren't just going to arbitrarily ban people but they will keep a closer watch. My IP was flagged, accounts were getting banned in days. Switched to a VPN and accounts started lasting much longer
  7. lol what's with you people not paying for shit? haha
  8. Those licenses are from stolen MSDN accounts. The licenses I sell are from the business that I own. You're paying a little more for mine but they won't stop working in 6 months edit: since we're posting reddit links https://www.reddit.com/r/pcmasterrace/comments/2uxtr5/warning_to_all_who_will_be_using/
  9. WTF is windows 10 home N And i wouldn't trust anyone selling the enterprise edition of windows. May be illegal Oh shoot forgot to say my prices are in CAD
  10. PROMOTION: 20% off for the first 5 highly trusted members that order All the license for sale are valid legal licenses. They are not hacked or stolen in any way. I work for an IT Managed services company in Canada. We sell many different kinds of licenses so we buy them in bulk, leading to large discounts. If you are looking for something that isn't on my list, PM me and I will see if I can find it for you. All prices in CAD Windows Windows 10 Home - 80$ Windows 10 Pro - 85$ Windows 8.1 Pro - 40$ Windows 7 Ultimate - 50$ Windows 7 Pro - 50$ Microsoft Office Office 2016 Standard - 95$ Office 2016 Pro - 115$ Office 2016 for Mac - 95$ Office 2013 Pro Plus - 60$ Office 2013 Standard - 55$ Office 2010 Pro Plus - 40$ Windows Server Server 2016 Datacenter - 200$ Server 2016 - 125$ Server 2016 Essentials - 95$ MS Project and Visio Visio 2016 - 60$ Visio 2013 - 50$ Project 2016 - 60$ Project 2013 - 50$ Adobe Acrobat Standard 11.0 - 125$ Master Collection CS6 6.0 - 400$ Production Premium CS6 6.0 - 200$ Design and Web Premium CS6 6.0 - 200$ Adobe Design Standard CS6 6.0 - 180$ Photoshop CS6 13.0 - 150$ Illustrator CS6 16.0 - 180$ Dreamweaver CS6 12.0 - 150$ Adobe Premiere Pro CS6 6.0 - 180$ Adobe InCopy CS6 8.0 - 110$ After Effects CS6 11.0 - 180$ T.O.S - I am not an Official Reseller of these licenses, however, if the license doesn't work and you send me a screenshot, I will replace it for free - I will provide a download link for any of the above software on request (except adobe, use adobe website) - If you don't know how to install an OS and fuck up your computer, I am not responsible - If you buy the wrong license key, I will not refund you - You cannot use these licenses for your registered business - You must leave feedback Payment Shoot me a PM or add my skype - BTC (will receive 5% discount) - Paypal (only to those I deem trustworthy) - OSRS GP - Amazon Gift Card - Interac E-Transfer (if you live in Canada, 10% discount)
  11. fucking drivers are the bane of my existance
  12. Thanks for your input! I think I'm going to try it out
×
×
  • Create New...