Jump to content

Chris

Scripter II
  • Posts

    8365
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    100%

Everything posted by Chris

  1. We can work this out in discord when you are available.
  2. Sorry for the downtime. I thought I had checked everything before making the changes for release. Please try the script again as an update went out earlier.
  3. Should be working as normal. Message me on discord for any issues.
  4. Care to screen share and message me on discord?
  5. Yeah I forgot to set a few variables since I referenced my previous CLI changes (I guess no one used it) so I doubled checked the old GUI start settings and found the issue. I messaged the SDN manager and I will wait for him to reply to see if he could accept my changes. Sorry.
  6. UPDATE VRK-59.0: Updated the script UI interface which will require a new way to create a settings file. UI Example (Dark mode when launched through client): Settings Page: https://cnar.dev/projects/evorkath/settings Click 'Save Settings' to download a configuration file that you can load into the script through either normal launch or OSBot Command Line Made it optional to keep low dose (2 dose) potions or not. Keeping it disabled will only grab 3 dose or higher potions every time it banks. Updated the rune pouch checker on script start to support any type of rune pouch. Updated the consume checker to use prayer potions if needed before it starts looting.
  7. execute(webwalkevent);
  8. it should say in the logger why it logged out.
  9. Try the following: Use new mouse option (if not already) Remove java 8 and install Java 8 build 291 (Mirror is built with this java version). Open Windows task manager and set the OSBot java process to high priority.
  10. New Mouse is enabled before launching the client? Sorry for the delayed response but I just got back from dealing with the hurricane in florida
  11. Join the discord and ping me when you need it.
  12. UPDATE VRK-57.0: Change: One eat action per walk sequence during acid phase. Added: a check to ignore attacking if the acid / fireball phase has started (Not always 100% but the check is there to ignore). (Sometimes it would eat food and then go to attack vorkath but a special phase has started.) Added: "Pool of Rejuvenation" to the list of supported pools in POH.
  13. ok
  14. Yeah true I guess I can put it in there. If needed I can give you another trial run for 48 hours just to be safe when you feel up to it. Just shoot me a dm in the discord
  15. yeah he pinged me in the discord when I was gone and then we went to PMs
  16. I have support to enable spellbook mode if you have law runes in your inventory at the start of the script. It WILL not grab more runes and will just stop at the bank when it runs out. I do not do any other checks and the script is not considered ironman friendly.
  17. getCharacterEquipment() check is failing based on the log and possibly due to you not starting mirror mode properly. Also, you need to be starting it at one of the bank modes, or relleka. Open osrs client to login screen Click add bot on the bot client and wait for mirror to hook THEN run the script OR login and run the script.
  18. List<String> itemsToLoot = Stream.of("Feather", "Bones").collect(Collectors.toList()); // Use streams to filter out anything not in our itemsToLoot and create a new collection. List<GroundItem> itemsOnTile = getGroundItems().get(targetTile.getX(), targetTile.getY()).stream() .filter(g -> g != null && itemsToLoot.contains(g.getName())) .collect(Collectors.toList()); // Check if there is anything available. if (!itemsOnTile.isEmpty()) { // We have items on this tile matching our filter. // Start looting. (Below is just a for each loop) for (GroundItem groundItem : itemsOnTile) { // Always null check when dealing with the OSBot api it will save you in the long run. if (groundItem != null && groundItem.interact("Take")) { new ConditionalSleep(3000) { @Override public boolean condition() throws InterruptedException { // item doesnt exist OR our players position is on the current tile (faster looting ig) return !groundItem.exists() || myPosition().equals(groundItem.getPosition()); } }.sleep(); } } } Added some comments but lmk if u need to understand something
  19. "Extended super antifire(4)", "Super antifire potion(4)", "Extended antifire(4)" "Anti-venom+(4)", "Anti-venom(4)" "Divine ranging potion(4)", "Divine bastion potion(4)", "Bastion potion(4)", "Ranging potion(4)" These are the options I have
  20. sorry been out for the week but I need some info.
  21. Chris

    gunman

    too political
  22. UPDATE VRK-56.0: Fixed bug dealing with equipment check after banking. Disabled secondary food UI option for now. Made a change to avoid setting RoD inside the gear check so it doesnt throw the script off.
  23. UPDATE VRK-55.0: Updated the script logging name to remove email handle. testusr233@site.com -> testusr233 Updated the rune pouch check on script start. Updated the lumbridge upper bank area with a custom area to prevent a reported issue. Added a fail safe during death collection based on the script miss-clicking 'Travel' when talking to Torfinn to collect items.
  24. Its ok to ignore this type of error as it is due to the UI package osbot is using. Refresh the script selector until it is able to run again. Also as for your kills not updating, its probably using your email handle instead of your osbot username for some reason. Try fetching an image with your email and see if its valid java.lang.NullPointerException at org.pushingpixels.substance.internal.ui.SubstanceSpinnerUI.getPreferredSize(SubstanceSpinnerUI.java:258)
×
×
  • Create New...