Jump to content

Leaderboard

Popular Content

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

  1. Did not even need to ask for trail, bought based off all your other scripts. Old school botter here coming to OSRS, will certainly look into all of your other scripts!
    1 point
  2. Thank you @Khaleesi Great script yall !
    1 point
  3. Unfortunately this isn't available with OSBot. You would have to create a custom logger. Here is a good link on how you can modify the logger for color: https://www.baeldung.com/java-log-console-in-color
    1 point
  4. https://ironman.guide/
    1 point
  5. Jivaro has one @FushigiBot
    1 point
  6. How can i execute the customwebwalk from my main class? import org.osbot.rs07.api.map.Position; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(name = "Skeleton", author = "Alek", version = 1.0, info = "", logo = "") public class Main extends Script { CustomWebWalk customWebWalk; @Override public void onStart() { //Code here will execute before the loop is started Position destination = new Position(3144, 3485, 0); // Replace with desired destination coordinates customWebWalk = new CustomWebWalk(destination); customWebWalk.exchangeContext(getBot()); customWebWalk.onStart(); } @Override public int onLoop() throws InterruptedException { if (customWebWalk != null) { execute(customWebWalk); } else { log("Web walk null"); } return 100; //The amount of time in milliseconds before the loop starts over } } Something like this? edit: i got it to execute but in asyncwalkevent class canperformaction is false. private boolean canPerformAction() { // Only allow the actions to start if the map destination is far enough away Position dest = getMap().getDestination(); if (dest == null) return false; int dist = getMap().distance(dest); return dist < 20 && dist > 7; } Im trying to walk to edgeville from grand exchange. Final edit: got it to work
    1 point
×
×
  • Create New...