Hi, I'm compiling a simplified version of this skeleton a .jar file, but when I add it into my Scripts folder, it won't appear in my list of scripts inside the client.
I've also made sure to include OSBot 2.5.77.jar as a library/dependency when compiling the final .jar file.
I've tried adding other people's scripts into the Scripts folder, and they appear normally, so that is not the issue.
Could someone please help me out?
code:
package com.dpdmi2;
import org.osbot.rs07.script.Script;
import org.osbot.rs07.script.ScriptManifest;
@ScriptManifest(author = "dpdmi2", name = "test", info = "bot_test", version = 0, logo = "")
public final class Test extends Script {
@Override
public final int onLoop() throws InterruptedException {
return 0;
}
}