Jump to content

Juggles

$100.00 Donor
  • Posts

    9598
  • Joined

  • Last visited

  • Days Won

    27
  • Feedback

    100%

Everything posted by Juggles

  1. Welcome back and good luck. The rules state you cannot share an account but I'm not exactly sure on how it works with a VPS and sharing a client. Hope a staff member can answer your question @Decode @Dex @Saiyan
  2. I don't use any public scripts, only local. Local scripts you use the name
  3. Why did you trust Extreme to make you a script when he already scammed someone else for $300 lol

    1. k9thebeast

      k9thebeast

      Can you add me on skype. devola.sythe

      I am the other dude who's bein scammed by extreme

    2. irwtonrs1

      irwtonrs1

      can confirm extreme is a complete douche bag. should be barred from making private scripts. 

    3. Saiyan

      Saiyan

      can you make a dispute if he has scammed you

  4. Start the script and open the logger and it will say the script id
  5. Don't forget -login USERNAME:PASS or it wont work
  6. Script is not looting anymore for me atleast
  7. When making my shop buyer, I lasted weeks 24/7 at Thessalian shop. Bank was made. Acc still isn't banned to this day I just don't bot it anymore
  8. Doesn't support stronghold as stated in the FAQ 11) Does it work in the Barbarian Stronghold? Not as of right now.
  9. Just sell to a reseller for $1
  10. Bought thanks to @Spookz
  11. Still need. Fast pls need to get my farm back up
  12. Well instead of having this, you don't need anything in this case at all. new ConditionalSleep(50000) { @Override public boolean condition() throws InterruptedException { return (!combat.isFighting() || lowHealth() || loot != null && loot.isVisible()); } }.sleep(); I would do it like this if (HP<int) { //eat } else if (loot.exists) { //loot } else { if (!combat.isFighting()) { enemy.interact("Attack"); state = "Fighting a enemy."; new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return (myPlayer().isFighting()); } }.sleep(); } else { } } Or you could do it like this. It will return state nothing when you are fighting since it is the last one that is true. if (HP<int) { return state.EAT; } if (loot.exists) { return state.LOOT; } if (!combat.isFighting) { return state.ATTACK; } return state.NOTHING; now in your loop you have case ATTACK; //Attack NPC //sleep until in enemy.interact("Attack"); state = "Fighting a enemy."; new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return (myPlayer().isFighting()); } }.sleep(); break;
  13. Yes this is good. So it will sleep until you are fighting. Now you have a combat.isFighting state where it does nothing. If you have eating and looting prioritized, it will automatically go to those states
  14. After attack NPC, you can sleep until my player is fighting. Like 3-5 seconds is fine. sleep until my player is fighting. Then it will prioritize looting and wont spam click.
  15. My code will loot in the middle of the fight.
  16. if (HP<int) { //eat } else if (loot.exists) { //loot item } else { if (combat.isFighting) { //chill } else { // attack NPC } } This will prioritize eating >loot> attacking
×
×
  • Create New...