JPHamlett Posted August 2, 2018 Share Posted August 2, 2018 I have my setup like this crp11070m:Scripts me$ pwd /Users/me/OSBot/Scripts crp11070m:Scripts me$ ls TutorialIsland.class TutorialIsland.jar However when I restart OSBot my local script is not there. Here is my script package TutorialIsland; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(name = "Tutorial Island", author = "JPHamlett", version = 1.0, info = "Will do tutorial island for you", logo = "") public class TutorialIsland extends Script { private final int RUNESCAPE_GUIDE_ID = 3308; public void interactWithRunescapeGuide() { getNpcs().closest(RUNESCAPE_GUIDE_ID).interact("Talk-to"); while (getDialogues().inDialogue()) { getDialogues().clickContinue(); } } @Override public int onLoop() throws InterruptedException { if (getNpcs().closest(RUNESCAPE_GUIDE_ID).isOnScreen()) { interactWithRunescapeGuide(); } sleep(1000000); return 0; } } How do I add this script to my available scripts? Link to comment Share on other sites More sharing options...
JPHamlett Posted August 3, 2018 Author Share Posted August 3, 2018 Solved it. Can't figure out how to close this post Link to comment Share on other sites More sharing options...