Devamo 1 Share Posted September 16, 2019 I followed a tutorial to set up Intellij, and followed it to a T, but I can't get the Jar to show in local scripts, please advise I created project > named it Fighte Created new class called Main.Java File > Project structure > Libraries >client.jar code: import org.dreambot.api.script.AbstractScript; import org.dreambot.api.script.Category; import org.dreambot.api.script.ScriptManifest; @ScriptManifest( author = "Devamo", description = "testBot", category = Category.COMBAT, version = 0.01, name = "testBot" ) public class Main extends AbstractScript { @Override public int onLoop() { return 0; } } File > Project structure > Artifacts > Jar empty > named fighter > changed output folder to dreambot/scripts > put module output for fighter > apply>build it creates Jar file in scripts folder, but can't find on local scripts in dreambot client, how to fix this? Link to comment Share on other sites More sharing options...
depwession 26 Share Posted September 16, 2019 Everything looks right.. If you didn't refresh then do that if you did then i tried lol Link to comment Share on other sites More sharing options...
Devamo 1 Author Share Posted September 16, 2019 Thanks for trying but sadly refresh didn't make it appear, I've also tried deleting the db folder and rerunning but no luck Link to comment Share on other sites More sharing options...
Devamo 1 Author Share Posted September 16, 2019 Problem solved, I was not using Java sdk 1.8, deleted java and installed this version and I can see my scripts now. depwession 1 Link to comment Share on other sites More sharing options...
depwession 26 Share Posted September 16, 2019 Ahhh there ya go, I assumed you already had that installed correctly. Glad you were able to figure it out! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now