Jump to content

Token

Script Officer
  • Posts

    8431
  • Joined

  • Last visited

  • Days Won

    49
  • Feedback

    100%

Everything posted by Token

  1. Does anyone know where they are? Eclipse suggests they would be in org.osbot.rs07.utility which is not in the docs at all...
  2. If you mean a script that sets up 2 accounts to splash on each other so they cannot be pked while hunting black chins at the same time between casts then the answer is absolutely no.
  3. Well I voted for anal anyway because I always wanted to get fucked in the ass. I guess it's some sort of lifetime goal for me. PS: If we are on topic, could someone unban me from the chatbox as I've been unjustifiably banned for pornography. EDIT: But the ban was justified.
  4. Me no question understand. Is it about anal or vaginal sex? If that's the case then anal all the way!
  5. Burning shade remains you probably didn't even think of that when you did it, but jagex did
  6. Yes it might not be in the Banks enum. I believe there are quite a few banks missing from that enum. You can always define your own banks though as those are just areas like any other.
  7. What exacly are you looking to see in the API? A static class called "Port Phasmantys"? If that's the case then Varrock isn't part of the API either
  8. I really enjoyed these days because I had more time to focus on my work without all the shitbox fights so I didn't bother appealing it but I guess I will give it a try sometime
  9. Yeh... let's just fuck all programming guidelines and go wild. Dude. Just do whatever the fuck you want. It is your program. Not my business. Stop quoting me every 10 minutes.
  10. And I was hoping he could unban me whenever I posted porn in the shitbox. Now my dreams are gone. :tears:
  11. Token

    Bot Farm

    Go farm on another game... Runescape has the most advanced bot detection system. You won't believe that until you try it though
  12. When you cache a specific widget it's a RS2Widget (was meant for the guy quoting me above saying the conditions are "race" but better waste 0.00001% cpu than be sorry and freeze your client). If your bot logs out and logs back in and try to interact with it you will get a NPE afaik. I don't know about Widgets.interact() as I never interacted with a widget via the Widgets class.
  13. Posted a porn link -> instabanned
  14. Awww... if it makes you feel better I'm also banned from the shitbox. At least you have a good reason
  15. What did you get banned for
  16. I don't think it has the null checking though and I believe widgets are local entities so should be null checked when changing context. But yes maybe the isVisible() is not necessary but you don't generally want to interact with an invisible widget. At least I check when it is visible in order to interact with it. It all depends on what you are trying to achieve.
  17. First of all I suggested how the code should work not how the final implementation of the class will look like. If you are new to programming, you will probably hear this quite often, you first create a functional program and then you optimise it. Would you prefer me to post a whole class instead of the condition to get the right widget and the interaction? Secondly, whether you stop getting the widget or not, you will still be checking those conditions. Take a look at our API and try to implement it in a script. Don't check the widget before interacting with it and you will get a wonderful NPE (Yes that happens even though the widget exists and you cached it). Be my guest and try it yourself, or don't and just start arguments about my code for no reason.
  18. I'm not surprised at all that jagex does such things, they really ban legit players sometimes. I got permabanned twice for the same offense in the same day.
  19. It's not, if you actually understand how runescape works.
  20. From the little code you provided, I must say I have absolutely no idea what you are trying to achieve. A more complex description of the context (what the script is supposed to do ingame) might help, but anyway in order to prevent any bugs you are supposed to make sure the widget you are interacting with is non-null, visible and has the required action and only then attempt to interact with it. So if 219, 0, 1 are the ids of the widget you want to do if (widgets.get(219, 0, 1) != null && widgets.get(219, 0, 1).isVisible() && widgets.get(219, 0, 1).hasAction("Continue")) widgets.get(219, 0, 1).interact("Continue");
  21. I had it quite often when working in Python. Even exporting the project itself to an external drive might cause this.
  22. This kind of error is usually generated by setting an incorrect path to your project/compiler/resources or anything else required in the compiling process. One common cause may be moving the project after creation/import or changing your workspace. Create a new project, copy packages and classes to that one and try to compile it.
  23. Permaban is a "goldfarming ban" so I guess most of your bans are for trying to goldfarm.
  24. I can make bots that don't get banend but that's not going to work if the activity itself cannot be botted without bans. It's not that simple. You can't make a bow stringer that doesnt get banned no matter how you do it. But training combat is one of the activities i can easily leave a bot running for 100+ without bans (because I use my own scripts and I know how to avoid those bans at script level which cannot be implemented in a bow string script).
×
×
  • Create New...