- Joined
- Nov 3, 2013
- Messages
- 609
- Thread Author
- #1
So I'm simply trying to get a script to show in the selector I have:
scripts->BatFarmer.class
and then:
scripts->BatFarmerManifest.xml
which contains:
<manifest>
<main-class>scripts.BatFarmer</main-class>
<name>Bat Farmer</name>
<description>Does some Farming and shit</description>
<version>1.0</version>
<compatibility>
<game-type>RS3</game-type>
</compatibility>
<categories>
<category>FARMING</category>
</categories>
<!--The rest are optional-->
<open-source>false</open-source>
<production>true</production>
<tags>
</tags>
<!--Required to publish on the bot store-->
<internal-id>batfarmer</internal-id>
</manifest>
All I get is "Unable to load Bat Farmer".
Edit:
Oh yeah, all the script is is this:
package scripts;
import com.runemate.game.api.script.framework.LoopingScript;
public class BatFarmer extends LoopingScript{
}
scripts->BatFarmer.class
and then:
scripts->BatFarmerManifest.xml
which contains:
<manifest>
<main-class>scripts.BatFarmer</main-class>
<name>Bat Farmer</name>
<description>Does some Farming and shit</description>
<version>1.0</version>
<compatibility>
<game-type>RS3</game-type>
</compatibility>
<categories>
<category>FARMING</category>
</categories>
<!--The rest are optional-->
<open-source>false</open-source>
<production>true</production>
<tags>
</tags>
<!--Required to publish on the bot store-->
<internal-id>batfarmer</internal-id>
</manifest>
All I get is "Unable to load Bat Farmer".
Edit:
Oh yeah, all the script is is this:
package scripts;
import com.runemate.game.api.script.framework.LoopingScript;
public class BatFarmer extends LoopingScript{
@Override
public void onLoop() {
// TODO Auto-generated method stub
}
public void onLoop() {
// TODO Auto-generated method stub
}
}
Last edited: