Jump to content

Rigged089

Members
  • Posts

    7
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Rigged089's Achievements

Newbie

Newbie (1/10)

1

Reputation

  1. Basically, i want to start botting about 5 accounts at once and I've been told the best way to execute this is to open 5 clients each connecting to a separate proxy. okay. Do you need a vpn service for this to succeed? Because I've tried connecting to free public proxy servers and it doesn't work. Does anyone recommend a VPN service? Moreover, how does one obtain details for a proxy server once I've purchased a subscription? (I've never used a VPN service before, is it easy?). Thanks.
  2. I've fixed it. turns out I had a missing } somewhere in my getcase method. Thanks for your help nonetheless.
  3. Thanks i tried it but that's not what's causing the issue! >>
  4. I've spent ages writing my first script in java but for nearly all my methods I get these errors (example): C:\Users\xxx\Documents\JCreator Pro\MyProjects\1main.java:107: error: illegal start of expression public void deposit() //throws InterruptedException ^ C:\Users\xxx\Documents\JCreator Pro\MyProjects\1\main.java:107: error: ';' expected public void deposit() //throws InterruptedException the start of this method is what is causing the errors as well as the other methods in the class. public void deposit() throws InterruptedException { Entity bank1 = objects.closest("Bank booth"); if (bank1 != null) { while(!this.bank.isOpen()) { bank1.interact("Bank"); sleep(random(100, 220)); } if (this.bank.isOpen()) { this.bank.depositAllExcept(995); sleep(random(50, 160)); this.bank.withdrawAll(xxxx); sleep(random(50, 160)); } } } It just doesn't make any sense and I can't find the issue... Moreover, will this deposit method successfully deposit and withdraw? Any advice is highly appreciated thank you!
  5. I've spent ages writing my first script in java but for nearly all my methods I get these errors (example): C:\Users\xxx\Documents\JCreator Pro\MyProjects\1main.java:107: error: illegal start of expression public void deposit() //throws InterruptedException ^ C:\Users\xxx\Documents\JCreator Pro\MyProjects\1\main.java:107: error: ';' expected public void deposit() //throws InterruptedException the start of this method is what is causing the errors as well as the other methods in the class. public void deposit() throws InterruptedException { Entity bank1 = objects.closest("Bank booth"); if (bank1 != null) { while(!this.bank.isOpen()) { bank1.interact("Bank"); sleep(random(100, 220)); } if (this.bank.isOpen()) { this.bank.depositAllExcept(995); sleep(random(50, 160)); this.bank.withdrawAll(xxxx); sleep(random(50, 160)); } } } It just doesn't make any sense and I can't find the issue... Moreover, will this deposit method successfully deposit and withdraw? Any advice is highly appreciated thank you!
  6. Thanks for the guide it was really useful, I did not realize all the programming is just telling the bot client how to interact with the game itself, but more manual click commands etc!
×
×
  • Create New...