Jake Paul 0 Share Posted September 11, 2022 Ive use both guides for both eclipse and Intellij. I am trying to get my script onto the dream bot client I have my path set right I have my manifest placed correctly. I haven't started writing the script I'm just simply trying to get the file to pop up in local. there are no errors whenever I try to export the jar file, there are no visible errors in the code itself. I don't understand what's going on please help lol. Link to comment Share on other sites More sharing options...
Neffarion 486 Share Posted September 11, 2022 Please follow this guide: https://dreambot.org/guides/scripter-guide/starting/ It is possible that you are forgetting something like adding the ScriptManifest to the script Link to comment Share on other sites More sharing options...
Jake Paul 0 Author Share Posted September 11, 2022 yeah i used that guide already idk what the problem is Link to comment Share on other sites More sharing options...
Neffarion 486 Share Posted September 12, 2022 11 hours ago, Jake Paul said: yeah i used that guide already idk what the problem is You must have skipped a step somewhere, start from scratch. If you follow 100% through the guide, it will work Link to comment Share on other sites More sharing options...
420x69x420 72 Share Posted September 12, 2022 does your code look like below? What is the folder path that you are putting the .jar in? What does your ScriptManifest look like? In the title of your post you say Can't export .jar file, yet in the post you say there are no errors when you exporting the .jar file. Did you try and fail to export the .jar, and didn't see any errors in the process? Or do you see a .jar file in the export folder?? import org.dreambot.api.methods.MethodProvider; import org.dreambot.api.script.AbstractScript; import org.dreambot.api.script.Category; import org.dreambot.api.script.ScriptManifest; import org.dreambot.api.wrappers.widgets.WidgetChild; @ScriptManifest(name = "#Tester", author = "Dreambotter420", version = 0.01, category = Category.MISC) public class Tester extends AbstractScript { @Override public void onStart() { MethodProvider.log("OnStart Script!"); } @Override public void onStart(String[] i) { MethodProvider.log("OnStart Script quickstart!"); onStart(); } @Override public int onLoop() { log("Test"); return 3000; } } Link to comment Share on other sites More sharing options...
Jake Paul 0 Author Share Posted September 12, 2022 looks just like that. path is the dreambot script folder. Jar file does appear in the script folder it just doesn't appear in local when im actually running dreambot Link to comment Share on other sites More sharing options...
Pandemic 2803 Share Posted September 12, 2022 Are there any errors in the console? CTRL+L or click the message in the bottom left of the client to open that up. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.