Skip to content

JCommands v1.0πŸŽ‰

Latest
Compare
Choose a tag to compare
@KoblizekXD KoblizekXD released this 24 Apr 05:07
· 5 commits to master since this release

First official version of JCommands!

Featuring:

  1. Easy slash command handling
    -including options & choices
  2. Easy legacy command handling
    -simplified argument handling
  3. Better event handlers

Examples:

Easy slash command:

image

Same thing with legacy command:

image

Simple ping discord bot:

JAPI.initialize(args[0]);
JAPI.setGuildID("your test guild id");
new SlashCommand("ping", "ping command", true, event -> event.reply("Pong!"));