Welcome!

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

Sign up now!

Resolved Manifest Issue

Joined
Oct 10, 2015
Messages
43
Hi There,

This is my first attempt at pushing a bot through the store.

I was wondering why I keep getting this error,

  • 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.
My manifest file looks like this. Am I missing something? The bot is working on SDK. Thanks in advance.

Code:
<manifest>

    <main-class>com.Shumbo.bots.DSSharkFisher.tasks.SharkFisher</main-class>
<name>DS Sharks Bot</name>
<description>Darkscape Sharks Fisher </description>
<version>1.0.0</version>
<compatibility>
    <game-type>DARK</game-type>
</compatibility>
    <categories>

        <category>FISHING</category>
    </categories>
<internal-id>DS_Shark_Fisher</internal-id>
<open-source>false</open-source>
<access>private</access>
<hidden>true</hidden>

</manifest>
 
Joined
Oct 10, 2015
Messages
43
Everything in my src folder is committed. Do I need to commit anything else? Out folder?
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
7,032
Everything in my src folder is committed. Do I need to commit anything else? Out folder?
Na, it's more than likely related to your project structure and which folder was committed as the root directory.
 
Login at RuneMate - USVN and make sure src is the root folder
 
Joined
Oct 10, 2015
Messages
43
Here is my layout it might help.

dk5CZ3d
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,053
The main-class you specified in your manifest doesn't exist. I think you meant com.Shumbo.bots.DSSharkFisher.SharkFisher (without .task). Please test your bots locally before pushing to the Bot Store. This wouldn't have loaded in SDK mode to begin with.
 
Top