Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/23/23 in all areas

  1. 1 point
  2. could i get a trial please?
    1 point
  3. 1 point
  4. Would love a trial of this one as well please
    1 point
  5. Done added trial enjoy I recommend vyres/elves for best profits
    1 point
  6. Hi, can I try a trial of this script? Or do I have to wait, since i'm already testing a trial of your Motherlode script?
    1 point
  7. Done added trial enjoy
    1 point
  8. Hey Czar would I be able get a trial please
    1 point
  9. 1 point
  10. @oozywalrus It should be inside your osbot client but you must hit Refresh and it will appear
    1 point
  11. Can I get a trial please?
    1 point
  12. 1 point
  13. Nice work, and well done getting something of your own up and running! My main piece of advice based on your code is to focus more on reliability. An important thing to remember is that the code interacts with a live game: a complex system with many points of failure beyond your control. As a result, any game interaction might fail. For this reason, it is important that at no point you implicitly depend on an interaction succeeding. For example, on line 28 you open the bank. However, this might fail! You then immediately proceed to deposit your items on line 32 assuming the bank is open. We can't deposit items if the bank failed to open, therefore line 32 might throw an error. A good way to avoid this is to ensure that, given a game state, only one interaction follows. E.g., the following code would be an improvement: onLoop() { if (getBank().isOpen()) { getBank().depositAll(); } else { getBank().open(); } }
    1 point
×
×
  • Create New...