- Joined
- Apr 7, 2015
- Messages
- 18
- Thread Author
- #1
So I have been trying to set up a simple bot to dip my feet into programming for RuneMate, but I cannot seem to get the bot to behave with SVN. I have created a very basic bot and am trying to test it by committing my changes to SVN and finding the bot on the RuneMate store page. Currently whenever I try to push a bot update, I get a message that my bot cannot be found in SVN. A few things I know:
Now for a question about manifest.xml. As far as the main-class element goes, what exactly do I put here? My current project setup looks like this to my main loop:
BotProject/src/IvyChopMain
So I assume I want something like:
com.src.IvyChopMain
as my Main-Class. However, I am just sort of spitballing here. What is the proper syntax for setting up the Main-Class?
Here is my manifest.xml as it stands:
Anything incorrect I should be changing?
- I have checked the SVN page and I see the commit inside of my repository.
- My manifest.xml is most likely incorrect, code is posted below.
Now for a question about manifest.xml. As far as the main-class element goes, what exactly do I put here? My current project setup looks like this to my main loop:
BotProject/src/IvyChopMain
So I assume I want something like:
com.src.IvyChopMain
as my Main-Class. However, I am just sort of spitballing here. What is the proper syntax for setting up the Main-Class?
Here is my manifest.xml as it stands:
Code:
<manifest>
<main-class>com.src.StuntIvyCutter</main-class>
<name>Stunt's Ivy Chopper</name>
<description>A beginners dive into scripting. Simple Ivy cutting.</description>
<version>1.0</version>
<compatibility>
<game-type>RS3</game-type>
</compatibility>
<categories>
<category>WOODCUTTING</category>
</categories>
<!--Required to publish on the bot store-->
<internal-id>PowerChopper</internal-id>
<!--The rest are optional-->
<open-source>false</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>
<resource>path/to/file.png</resource>
</resources>
</manifest>
Anything incorrect I should be changing?
Last edited: