Unique bot build by programmers on team 6662 to practice using GitHub, Java, and VScode.
- First barely functional instance of the bot
- Bot configured (and secured) with some basic commands
- Updated hierarchy for 2020 season
- Make a new folder in
java/
namedkey
. Then, create a new .java file in that folder namedKey.java
. - Inside this file, paste:
package key;
public class Key
{
public static String getKey()
{
return "<YOUR_KEY_HERE>";
}
}
- Be sure to mark this folder with .gitignore if you plan on publishing it later!
Using this bot requires JDA (Java Discord API) by DV8FromTheWorld.