- Joined
- Mar 22, 2015
- Messages
- 75
- Thread Author
- #1
I'm trying to write a script, currently it's just supposed to print something out but it does not show up in the bot table.
Here's my main class
and my manifest
I set up an Eclipse run configuration (aint nobody got time for copying files every time I want to test) like this
I really can't figure this out; there are no errors in the console or in my code.
Can somebody help me? Thanks

Here's my main class
Code:
package me.themallard.woodcooker;
import com.runemate.game.api.script.framework.LoopingScript;
public class Woodcooker extends LoopingScript {
@Override
public void onStart(String... arg0) {
System.out.println("Hello, World!");
}
@Override
public void onLoop() {
}
}
and my manifest
Code:
<manifest>
<main-class>me.themallard.woodcooker.Woodcooker</main-class>
<name>Woodcooker</name>
<description>Chops trees and lights them.</description>
<version>0.0.1</version>
<compatibility>
<game-type>OSRS</game-type>
</compatibility>
<categories>
<category>WOODCUTTING</category>
<category>FIREMAKING</category>
</categories>
</manifest>
I set up an Eclipse run configuration (aint nobody got time for copying files every time I want to test) like this


I really can't figure this out; there are no errors in the console or in my code.
Can somebody help me? Thanks