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 How to push 2nd Bot?

Joined
May 8, 2017
Messages
11
Can someone explain me how to add second bot? I can do it in my Project URL and password where I pushed my first bot? If, yes, how I will do it?
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,770
All of your bots should be in the same project and go to the same svn.
 
Eyyyyy Macarena
Joined
Oct 24, 2018
Messages
58
Just have one project for all your bots and push it all to the same repository. All of your bot manifests will be read and reflected in the bot store.
 
cuppa.drink(java);
Joined
Mar 13, 2018
Messages
6,966
Just have one project for all your bots and push it all to the same repository. All of your bot manifests will be read and reflected in the bot store.
This is good advice. The most comprehensive way to structure it imo is one project with separate packages for each bot (along with packages for shared stuff if applicable).
 
Joined
May 8, 2017
Messages
11
For example it is look this?
package.minningbot
package.chickenkillerbot
package.woodcuttingbot
package.classforeverybot (without manifest file)
Every package will have other manifest for each bot. When I push I will have 3 bot in bot store?
 
Eyyyyy Macarena
Joined
Oct 24, 2018
Messages
58
For example it is look this?
package.minningbot
package.chickenkillerbot
package.woodcuttingbot
package.classforeverybot (without manifest file)
Every package will have other manifest for each bot. When I push I will have 3 bot in bot store?

My dir structure for the pro + lite versions of my herblore bot looks like this:
upload_2018-11-5_21-36-14.png

It doesn't matter what .java files exist in your repo, all that matters is the manifests. It probably makes sense to keep the manifests in bot-specific directories, but you could, for example, have them in the root. The important thing is that they point to the correct classpath.
 

Attachments

  • upload_2018-11-5_21-35-46.png
    upload_2018-11-5_21-35-46.png
    13.8 KB · Views: 2
Top