Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 898 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 898 Bytes

FalKimBot

Unique bot build by programmers on team 6662 to practice using GitHub, Java, and VScode.

Version I

  1. First barely functional instance of the bot
  2. Bot configured (and secured) with some basic commands
  3. Updated hierarchy for 2020 season

Making a Key class:

  • Make a new folder in java/ named key. Then, create a new .java file in that folder named Key.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!

Dependencies:

Using this bot requires JDA (Java Discord API) by DV8FromTheWorld.