Jump to content

Apaec

Scripter III
  • Posts

    11134
  • Joined

  • Last visited

  • Days Won

    88
  • Feedback

    100%

Everything posted by Apaec

  1. Thank you for the beast 6h proggie mate! I've added it to the front page Apaec btw 1337 cooked per hour x)
  2. This is a problemo with the servers mate, dw, everyone even legit players get this message when servers disconnect nothing to worry about
  3. Added a 24h trial to yuor account. Enjoy! Feel free to ask for longer if you need longer to decide.. Apaec
  4. You're actually defining two seperate instances of stall in the code. What you name as stall in the case may not necessarily be what you name as stall in the getState. For this reason, you need to add a nullcheck in otherwise you will be recieving frequent NPEs. Generally it's a good idea to nullcheck anything you define before interacting with it though. Even if you consider it unnecessary, it's always an added level of check which can impact the stability of your script Apa
  5. To walk a path you would first define a posiion array: Position[] path = new Position[]{new Position(0,0,0), new Position(0,0,0), ...}; Either way, adding more paths it could use would not help (at all) with making the bot less detectable / humanlike! Just stick to one path. If anything, imo, it may even make the script more detectable. Apaec
  6. I've enabled a 24h trial on your account. Enjoy! & Let me know if you need longer : ) Apaec
  7. Have you accidentally selected 'use special attack'? the only reason i could think it would do this would be if you configured it incorrectly in the GUI ! Apa
  8. Hey! Not so sure what you mean. Do you mean, like my rock crabs script, that you want there to be a 'random' option where the script would walk to either west or east rock crabs based on a random returned boolean or similar? If so, it's not that simple. But ultimately, you need to record two different paths going from the bank, eg BANK_TO_NORTH, BANK_TO_SOUTH then, when the code comes up to walk to the area, just do switch(random(1,2)) { case 1: localWalker.walkPath(BANK_TO_NORTH); //any additional code here break; case 2: localWalker.walkPath(BANK_TO_NORTH); //any additional code here break; } Or something similar. Remember, that will only start walking. You need do find some method of telling the script to continue walking that path if for whatever reason it stops. A good but somewhat looked down on method for doing this is usng flags. There's no real problem with doing this so i suggest you do So you would just put a boolean set to true after you call the walkPath method, and then just in your getState ask if that same boolean is true, if so walk north, otherwise walk south etc. remember to reset the boolean when you get to the desired area though! Let me know if i'm talking about the wrong thing or you have any other problems. Apaec
  9. The 24hours probably timed out. Remember they start as soon as I post a reply to your request! I've gone ahead and enabled an additional 24hours to your account so you can get some use this time! Let me know if you also miss this one / need longer Apaec
  10. Nice am going for dis too PS i bet it was fun typing those quests out
  11. Update! Version 3.21 Added save button to the GUI - this will save the current setup ready for next time. If you dont watn to save the set up, you can just ignore the save button and just press start Increased version number from 3.20 to 3.21 Enjoy the update lads! Apaec
  12. Glad you got it sorted If you were wondering, an even simpler way would just be to put this.inventory.dropAll() in your onloop straight up and just get rid of the getstate enum and method. Sorry I was a bit late with the response, was sleepin Apa
  13. Hey! Yes this is only an issue with alkharid as it's the only location with a door. When I was testing the script, I did not experience any lissues such as this, although that doesn't mean they are nor or cannot be present. I'll look into this for you Have enabled a 24h trial on your account. Enjoy! Thank you for the support friends! As for a blast furnace script, i've considered it but never got round to actually writing one. Perhaps. Depends on whether I have an account ready or not! Thanks to both of you for the kind words Apa
  14. Hey, Ofcourse, understand your reasoning. I've enabled a 24h trial on your account! Let me know if you need longer Apaec
  15. After acerd was demoted to CBA, i'm thinkin somethings brewing in the staff team x)
  16. UPDATE!!! Tired of always entering the GUI when you start the script, then realising you got something wrong and stop and restart the script? Ye same, so what i've done is make the script save your GUI when you press the start button. When you load up the script the next time, it will remember your last setup allowing you to start the script in no time at all VERSION 3.20 Few quick fixes to GUI Added GUI save feature which remembers last GUI Hope you're enjoying the frequent updates! Happy botting Apaec PS Update should be available within the next 24h. Please let me know if you like the save feature and if it works well for you!
  17. Sure! I've enabled a 24h trial on your account. Any questions, feel free to ask. Also feel free to ask for a longer trial should you want longer to decide. Also, i've just pushed an update which saves the gui and remembers it next time you start the script. That should be available within the next 24h, so hopefully you should be able to check that system out too apa
  18. I only started botting recently, but i remember the first script i used which was pretty damn good was CMH abyss, my buddy and I had an acc running that 24/7 and it was great profit thanks eric but since then i've started scripting and i've been making scripts of my own. I've been able to make mine run really reliably too!
  19. Hey I'm afraid I can't and dont plan to add cannon support to the script, not because I can't or don't want to, but because it really affects how the script runs for players who won't use a cannon. As introducing cannon support ultimately means a world cannot really be used efficiently by any player other than the cannon user, this would put other customers off and I want to make it a fair place to train for all But do not fret, i've still got other updates coming out, i've been working recently on a GUI saving feature which loads your previous gui on startup This update should hopefully be out soon Apaec
  20. Hey! Sure, i've enabled a 24h trial on your account. Enjoy!
  21. Hey,sure! I've enabled a 24h trial on your account. Enjoy! let me kno if you need longer. Apa Edit: apologies, it seems the auth didn't go through. I've teens led it so when you reboot the client you should see the script.
  22. this.inventory.getAmount("Copper ore") < 15
×
×
  • Create New...