Jump to content

Adept

Lifetime Sponsor
  • Posts

    346
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Adept

  1. I have "getLogoutTab().logOut();" in my overriden onExit() method so that the account logs out when I manually stop the script using the GUI. It used to work in previous versions (months ago) but not anymore. What has changed? I also tried creating my own logout() method. It works when I place it elsewhere but not in the onExit() method.
  2. Almighty master farmer Juggles, why do my freshly bonded accounts keep getting banned? (new proxies, new mule, new errything.) I'm now suffering a terrible loss in geepees due to this. FeelsTerribleMan

    1. Juggles

      Juggles

      How long ago did you do tut island on them?

    2. Adept

      Adept

      Not long tbh. I'll try resting them.

    3. Juggles

      Juggles

      Yeah prob delay ban from tut. 

  3. Honestly mate, you're probably better off investing all this time elsewhere. Imagine what skills you could master or what projects you could develop if you shifted your focus to something else. In the long run, these are likely to give you more monetary gain.
  4. I think you can watch it as it's being aired live with Mobdro. You'll probably be able to watch the recorded video later at putlockerhd.is (official putlocker domain).
  5. when the service money doesn't suffice for bills
  6. What case is that? Looks aids.
  7. It's amusing how clueless you are about web technologies. Java to HTML, ha, good luck with that. Might wanna revise your task description.
  8. Don't quote me on this but I believe NPCs "animate" when under attack (and are being splashed on) so !npc.isAnimating() should take care of that. Also, I just checked the API and the "!npc.isUnderAttack()" check in the filter I provided earlier is redundant since it's already checked for with "npc.isAttackable()". However since you explicitly stated to check for an NPC which is not under attack and not one which is attackable it makes more sense to keep the former. Edited my reply to reflect that.
  9. I imagine you don't want to attack an NPC which is under attack, but you want to attack one which is not. Here's how to find that monster: NPC notUnderAttack = getNpcs().closest(new Filter<NPC>() { @Override public boolean match(NPC npc) { return !npc.isUnderAttack() && !npc.isAnimating(); } });
  10. l0l would you prefer to be corrected or continue living in ignorance? oh wait, I know the answer I appreciate it when ppl point out my mistakes. You'll start making mistakes too once you start writing your own code
  11. I'd suggest you read about inheritance and familiarise yourself with the API before you starting throwing claims about what is what. Both GroundItem and NPC implement Entity.
  12. Thanks for sharing such an intimate moment with us. Parting with loved ones is never easy. Stay strong and remember that time heals all wounds. Sending much love your way.
  13. Disable the bot's own login handler (launch your bots with CLI and norandoms enabled) and manage account logins yourself. Here's a good place to start:
  14. I honestly don't know. I picked up the little practical stuff I know from different places along the years. You'll find good tutorials explaining the whitehat aspects fairly easily. With some digging I'm sure you'll find the spicy stuff too
  15. A VPN is enough for your average Joe who likes a little tentacle porn, but if you seek true anonymity it's obviously more complex than that and will require a combination of different measures to add multiple layers of security. Also keep in mind that when purchasing a service, you are trusting that provider with your identity, so choose wisely especially if you intend to perform black-hat activities (which I am not condoning).
  16. Onion networks are another option. The most popular would be Tor. Not advisable for botting though.
  17. As explained above, it ultimately boils down to personal preference. Organise your code however you see fit and most logical. Take into consideration re-usability and OOP best practices.
×
×
  • Create New...