Skip to content

yoyosource/BotAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BotAPI

public static void main(String[] args) {
  Bot bot = new Bot("<TOKEN>");
  bot.setGame("<GAME>");
  bot.setStatus(OnlineStatus.ONLINE);
  bot.setPrefix("<PREFIX>");
  
  bot.addCommand("<COMMAND>", new Command() {
      @Override
      public boolean needsExecution(MessageReceivedEvent e, String[] args) {
          return false;
      }
  
      @Override
      public void execute(MessageReceivedEvent e, String[] args) {
  
      }
  });
  
  bot.start();
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages