Jump to content

Johnxtrem

Members
  • Posts

    31
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Johnxtrem's Achievements

Bronze Poster

Bronze Poster (2/10)

3

Reputation

  1. Hey guys, need a price check on my account: Thanks!
  2. Hey guys, I'm just wondering what's up on weekends since that's the only time my accounts last a lot more and survive tipical morning bans? If jagex's system is automatic, it does not work? Or there's no staff to review things? Thanks
  3. Solved it like this: private void FinishDialogue() throws InterruptedException { while (IsPendingContinue()) { ClickContinue(); sleep(650, 1050); } } private boolean ClickContinue() { if (!IsPendingContinue()) return false; keyboard.pressKey(32); return true; } private boolean IsPendingContinue() { List<RS2Widget> widgetsList = widgets.getAll().stream().filter (w -> w.getMessage().equals("Click here to continue")).collect(Collectors.toList()); return widgetsList.size() > 0; }
  4. Hey, I know, but does that mean that clickContinue shoudln't work?
  5. I just checked and isPendingContinuation and inDialogue always returns true, so its kinda "annoying" to detect every part when exactly it is done. I've already tried the keyboard method, works but, yeah...
  6. I am indeed Interesting, I'll check a couple of things then. But what could be the reason just dialogues.clickContinue() doesn't work? Thanks!
  7. Hey, I'm having issue with dialogs. dialogues.clickContinue(); sometimes just doesn't want to continue the conversation. Its like it doesn't find the widget or something. Here's my code to finish a dialogue. private void FinishDialogue() throws InterruptedException { while (true) { boolean isPending = new ConditionalSleep(6*1000) { @Override public boolean condition() throws InterruptedException { return dialogues.isPendingContinuation(); } }.sleep(); if (isPending) { dialogues.clickContinue(); sleep(650, 1050); continue; } break; } } Any directions to help solve this would be appreciated, thanks!
  8. Thanks for the reply guys, yeah i thought it were the VPN, all VPN have shared ips, another question guys, how many account should i push at same time on tut to avoid the ban?
  9. The thing is i'm running 30 Bots+ and only 10 got banned, i think it's not a script issue.
  10. Hello! Good evening atm i'm running 30bots+ everyday, need tips on how to do bunch of account with tut done, i'm trying shareds VPN but it but sometimes it got disable, and if i use proxy accounts get lock after tut. Any Help? Should i build my own VPN? Thanks in advance guys!
  11. Hey, I had something similar prior running so many clients and worked just perfectly, the issue occured only when running as much... I made it with conditional sleeps and loops now and seems to be working so far
  12. Most likely yeah, doesn't happen always but just sometimes. I'm running about 35+ clients. Hmm, I'm using conditional loop, but since it returns true even if it doesn't behave correctly its kinda useless new ConditionalLoop(getBot(), 3) { @Override public boolean condition() { return !trade.acceptTrade(); } }.start();
  13. Hey guys I've noticed this can happen sometimes, usually after account is running for a longer time when calling: trade.acceptTrade(); Instead of accepting the trade, it clicks on decline button instead, not even clicking but just hover it and returns true despite. Any ideas what could be the cause of this? Thanks!
  14. Hey, I made a post about this before, but here's another question. When I run 4-8 clients on one pc, scripts (generally) behave correctly. I tested then 35 clients on a pc and scripts start being stuck, etc. To see what's up, I did a little test and noticed that the usual response time of methods is greatly increased, example: 1. Trade player 2. sleep 200ms. 2. loop -> log trade.isCurrentlyTrading(); => FALSE 3. After 1.8 secs => TRUE. This applies to almost all methods. So my question again is, how do you handle such inconsistency except by adding longer sleeps? P.S. I use conditional sleeps, but that can't be applied everywhere. Thanks!
×
×
  • Create New...