Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Scripts not showing up

Joined
Mar 22, 2015
Messages
75
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.

llyipz.png


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
edgorv.png

acriuf.png


I really can't figure this out; there are no errors in the console or in my code.
Can somebody help me? Thanks :)
 
Joined
Feb 24, 2015
Messages
1,202
I have the same problem tbh :p there is no real tutorial on how to run your own local scripts if i am correct
 
Joined
Mar 22, 2015
Messages
75
ayy lmao, i got it working.
I need to make a symlink.
To do this
Code:
mklink /J C:\Users\<your username>\Runemate\bots\<package> C:\Workspace\bot\bin\<package>
so I used
mklink /J C:\Users\nigglet\Runemate\bots\me D:\Projects\bot\woodcooker\bin\me
 
Top