SimpAPI icon indicating copy to clipboard operation
SimpAPI copied to clipboard

A MC Plugin Development API to make your life easier.

Results 10 SimpAPI issues
Sort by recently updated
recently updated
newest added

When the plugin that uses the SimpAPI is enabled, it says: https://imgur.com/oTXeEoe, basically prints in console every class that extends the Menu class. Please fix it.

The autocomplete displays at args.length = 4 ![Snag_403974b](https://user-images.githubusercontent.com/26182263/130345896-1b7a702a-3f51-47f4-bf56-98ed5fa98d85.png)

**When I set subCommandArgs(), the autocomplete keeps on going:** ![image](https://user-images.githubusercontent.com/88842870/130062818-9472f184-e002-4fde-9abe-e1a9e56db117.png) ![image](https://user-images.githubusercontent.com/88842870/130062858-762cbaf8-a8f3-4d58-8fd5-3b4859348b78.png) ```java @Override public List getSubcommandArguments(Player player, String[] args) { return Arrays.asList( "note", "memory" ); } ``` **And it goes...

A way to have subcommands as both subcommands and their own standalone command is cool, I'm thinking we mark a subcommand with an interface and then register it seperately in...

enhancement

When using tab-completer if I space after the last \ when entering a command I get the error below. ```Unhandled exception executing tab-completer``` ``` public List getSubcommandArguments(Player player, String[] args)...

bug

Closes #17 Adds a new marker annotation called `QualifiedSubCommand`: ```java @QualifiedSubCommand(aliases = {"commandalias"}) class MySubCommand extends SubCommand { //.... } ``` This registers the subcommand as it would normally, but...

So that the Menu code doesn't have to do a static get of the main class, rather itll be injected

enhancement

Make ColorTranslator work with Strings containing multiple lines, perhaps by checking if each character has a newline char or not.

enhancement

You are able to add items to an inventory even when cancelAllClicks is true. I plan to fix this soon.