Jump to content

dpdmi2

Members
  • Posts

    4
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

dpdmi2's Achievements

Newbie

Newbie (1/10)

0

Reputation

  1. Fixed. The issue was that I compiled it as part of a package (com.dpdmi2).
  2. Additionally, when I download .class files from public github scripts and convert them into .jar files, they also work just fine. However, when I copy the source code for the .class file and try to compile it myself (first to .class, then convert .class to .jar), then it doesn't work. So the problem has to lie in the compilation I assume?
  3. 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; } }
×
×
  • Create New...