Devamo 1 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?
depwession 26 Posted September 16, 2019 Everything looks right.. If you didn't refresh then do that if you did then i tried lol
Devamo 1 Author 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
Devamo 1 Author 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 26 Posted September 16, 2019 Ahhh there ya go, I assumed you already had that installed correctly. Glad you were able to figure it out!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.