Hey, great guide, im just curious if the script manifest has changed since this tutorial was created? because i cant seem to get OSbot to recognize the custom script. I havent changed much past the original script but i exported just to make sure it worked and it doesnt
package testingBot.main;
import org.osbot.rs07.script.Script;
import org.osbot.rs07.script.ScriptManifest;
@ScriptManifest(author = "xjax1", info = "Testing Script", name = "testbot", version = 1, logo = "")
public class Main extends Script {
@Override
public void onStart() {
log("Starting Up");
}
@Override
public int onLoop() throws InterruptedException {
return 0;
}
@Override
public void onExit() {
log("Exiting");
}
}
As you can see, not many changes, but it still wont load, i have made sure(multiple times) its exported as a JAR and in the right file, and have restarted and re-installed OSbot quite a few times. is there any possible fix for this? or does OSbot just not like my pc script for some reason?