- Joined
- Jun 8, 2017
- Messages
- 187
- Thread Author
- #1
When I try to push my bot, I always get the following error. Been trying to solve this for a while now.
Locally my bot works fine, so I tried to find the cause in the manifest without succes.
Whats the problem here? I created my bot using mostly 'Snufalufugus' Tree bot guide.
Unfortunately, none of your bots have advanced to the next stage of review. Before you consider pushing another update, please review the following suggestions, warnings, and/or errors.
This message has been automatically generated by RuneMate's Bot Pusher. If this was the result of a mistake or misclick on your part, please do not feel the need to respond/apologize. If you have any questions or concerns, just respond to this message and an Executive will review your comment shortly. Happy botting!
- com.SilenceP44.bots.WillowBot.SilenceWillow doesn't appear to have any content.
- The Bot Pusher looked through your svn repository and wasn't able to find any bots. If you committed your code correctly than this is most likely caused by either a missing or invalid manifest. It's also common to see this occur when code has been packaged into multiple modules because it's unable to resolve a single source root.
This message has been automatically generated by RuneMate's Bot Pusher. If this was the result of a mistake or misclick on your part, please do not feel the need to respond/apologize. If you have any questions or concerns, just respond to this message and an Executive will review your comment shortly. Happy botting!
<manifest>
<main-class>com.SilenceP44.bots.WillowBot.SilenceWillow</main-class>
<name>Silence's Willow Bot</name>
<tag-line>Chops your wood!</tag-line><!--Max of 50 chars-->
<description>Chops willows near Draynor.</description><!--Max of 110 chars-->
<version>1.0.2</version>
<compatibility>
<game>OSRS</game>
<!--Can be used if you absolutely need to disable DarkScape (highly discouraged)-->
<!--<disable-game>DARK</disable-game>-->
</compatibility>
<categories>
<category>WOODCUTTING</category>
</categories>
<!--Required to publish on the bot store-->
<internal-id>SilenceWillow</internal-id>
<!--The rest are optional-->
<open-source>true</open-source>
<hidden>false</hidden> <!--If you need to hide it from the bot store for maintenance-->
<access>public</access>
<tags>
<tag>Tree</tag>
</tags>
<resources>
</resources>
</manifest>
<main-class>com.SilenceP44.bots.WillowBot.SilenceWillow</main-class>
<name>Silence's Willow Bot</name>
<tag-line>Chops your wood!</tag-line><!--Max of 50 chars-->
<description>Chops willows near Draynor.</description><!--Max of 110 chars-->
<version>1.0.2</version>
<compatibility>
<game>OSRS</game>
<!--Can be used if you absolutely need to disable DarkScape (highly discouraged)-->
<!--<disable-game>DARK</disable-game>-->
</compatibility>
<categories>
<category>WOODCUTTING</category>
</categories>
<!--Required to publish on the bot store-->
<internal-id>SilenceWillow</internal-id>
<!--The rest are optional-->
<open-source>true</open-source>
<hidden>false</hidden> <!--If you need to hide it from the bot store for maintenance-->
<access>public</access>
<tags>
<tag>Tree</tag>
</tags>
<resources>
</resources>
</manifest>
package com.SilenceP44.bots.WillowBot;
import com.runemate.game.api.script.framework.tree.TreeBot;
import com.runemate.game.api.script.framework.tree.TreeTask;
/**
* Created by SilenceP44 on 9/07/2017.
* Test
*/
public class SilenceWillow extends TreeBot {
@Override
public TreeTask createRootTask() { return new InWillowArea(); }
}
import com.runemate.game.api.script.framework.tree.TreeBot;
import com.runemate.game.api.script.framework.tree.TreeTask;
/**
* Created by SilenceP44 on 9/07/2017.
* Test
*/
public class SilenceWillow extends TreeBot {
@Override
public TreeTask createRootTask() { return new InWillowArea(); }
}
Whats the problem here? I created my bot using mostly 'Snufalufugus' Tree bot guide.