Jump to content

regnivon

Members
  • Posts

    6
  • Joined

  • Last visited

  • Feedback

    100%

Profile Information

  • Gender
    Male

Recent Profile Visitors

826 profile views

regnivon's Achievements

Newbie

Newbie (1/10)

0

Reputation

  1. I figured it out, forgot that the ring of dueling doesn't have a castle wars option when its in your inventory >.> thank you for the debug suggestion though imateamcape that helped me find out the problem!
  2. I have a script that tends to die, and have tried to implement a deathwalking feature where when the bot dies, it teleports using the ring of dueling in its inventory to castle wars. I currently have an if statement at the top of my onloop like so, but when the bot dies/ is started in lumbridge, it just stands there. Any suggestions? if (deadArea.contains(player)) { getInventory().interactWithNameThatContains("Castle Wars", "Ring of dueling"); new ConditionalSleep(2000, 4000) { @Override public boolean condition() throws InterruptedException { return player.isAnimating(); } }.sleep(); return 500; }
  3. I also tried that, using java -jar C:\Users\Josh\Downloads\OSBot2.4.84.jar but it says unable to access jarfile. EDIT: nvm figured it out I just had to rename the .jar so that there were no numbers as the space was messing it up I believe.
  4. I'm trying to use CLI for the low resource mode, but when i used the command it returned the error in the title. I put down the path to the client.jar like so: java -jar C:\Users\Josh\OSBot\Data\client.jar if you have any suggestions, please let me know!
  5. I managed to get it working! I think it might have been a problem with the inventory check, but Im not actually sure because i changed a few things and it started working. Thank you for the help though!
  6. This is my first real script after doing a few basic ones. I am trying to make a script that collects and deposits planks from the barb outpost. It is currently trying to collect planks even when the inventory is full. It also seems to not want to open the bank. If you have solutions to these issues or notice any others please let me know! Thanks you. My code:
×
×
  • Create New...