Skip to content

Releases: CyR1en/CommandPrompter

Version 2.8.2

29 Feb 00:25
db94bb9
Compare
Choose a tag to compare

Minor update

  • This fixes a major issue with the prompt system where prompt answers doesn't replace prompts with format.

Version 2.8.1

22 Feb 23:03
56dacc2
Compare
Choose a tag to compare

Minor Change

Full Changelog: 2.8.0...2.8.1

Version 2.8.0

18 Feb 23:59
697965e
Compare
Choose a tag to compare

Changes

  • Added Towny PlayerUI filters
  • Added LuckPerms PlayerUI filters
  • Online Player input validator
  • Ability to ignore MiniMessage syntax
  • Custom model data for PlayerUI heads

Auto Generated

What's Changed

Full Changelog: 2.7.0...2.8.0

Version 2.7.0

21 Dec 06:32
2433bc7
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.6.0...2.7.0

Version 2.6.0

30 Nov 23:10
f034d58
Compare
Choose a tag to compare

What's Changed

  • SignUI change and Command rework by @CyR1en in #31
  • Post command improvements

Full Changelog: 2.5.0...2.6.0

Version 2.5.0

08 Nov 18:31
3828d52
Compare
Choose a tag to compare

What's Changed

  • Console dispatching via Console Delegate
  • Improved dependency loading
  • Added support for CatServer
  • Changed toolchain target to 16 to support runtimes 16+
  • Added the ability to add delay to Post Command
  • Commands with no prompts but contains Post Commands will still be executed after the main command.
    • I.E /op CyR1en <-exa:100 deop CyR1en>

Full Changelog: 2.4.1...2.5.0

Version 2.4.1

25 Sep 17:54
5fc4c81
Compare
Choose a tag to compare

Changes

  • Add support for 1.20.2
  • Fixed dependency loading for non-paper server distribution

Version 2.4.0

13 Sep 22:58
d0bd2af
Compare
Choose a tag to compare

Changes

  • PAPI can now be used for prompt messages
  • Added the ability to add custom model data for all configurable items
  • Added the ability to do prompt input validations
    • Usage and Example here
  • Fix Post Command clean up
  • Load dependencies in runtime, reducing file size
    • A bundled version is still available on the release page on github

Full Changelog: 2.3.0...2.4.0

Version 2.3.0

22 Aug 17:52
Compare
Choose a tag to compare

Changes

  • Allow for multiple post commands instead of just one.
  • Make the prompt out-of-bounds message translatable for post commands.

Full Changelog: 2.2.0...2.3.0

Version 2.2.0

19 Aug 04:47
Compare
Choose a tag to compare

CommandPrompter 2.2.0

This update contains two new features that are requested on the Discord server:

  • Ability to execute a command after all prompts are completed. This feature is called PostCommand.
  • Ability to change Anvil UI input field prompt.

PostCommand

You can now add a command to execute after prompt completion using the PromptQueue argument -exa (execute after) here's the format

/sampleCommand <test> <-exa say hello world>

This should execute /say hello world after.

Placeholders for prompt answers is also available. The format of the placeholder is p:<prompt index>. Since it's the index, the first prompt will always be index 0.
Example:

/sampleCommand <this is prompt 0> <-exa say p:0>

learn more about it here

Anvil UI

With the configuration,

AnvilGUI:
  Enable-Title: true
  Custom-Title: ''
  Prompt-Message: 'Enter Answer Here'
  Item: Paper
  Enchanted: false

The following command will now show as the picture below.

/test <-a Different Prompt>

img

Full Changelog: 2.1.1...2.2.0