InputGUIs

InputGUIs

The plugin doesn't use input in too many places but where it does it has some options!

Avalabile input gui types: - Sign GUI (not working on 1.16) - Anvil GUI - Chat GUI

To select a specific GUI you have to modify the setting inside config.yml

config.yml fragment
input-guis:
  #What kind of input would you like? 3 Avalabile
  #1. 'sign'
  #2. 'anvil'
  #3. 'chat'
  input-type: 'sign'
  #If you use chat setting, this message will be shown
  #after 20 seconds of opening the chat listener
  chat-listener-end-message: '&cYou took too long to enter an input.'
  deposit-coins:
    lines:
      - '^^^^^^^^^^^^^^^^'
      - 'Enter the amount'
      - 'you want to deposit'
    success-message: '&fYou have deposited &6%amount% coins &fin your bank!'
    fail-message: '&fYou don''t have &6%amount% coins &fin your purse!'
    invalid-number: '&cPlease enter a valid number.'
  withdraw-coins:
    lines:
      - '^^^^^^^^^^^^^^^^'
      - 'Enter the amount'
      - 'you want to withdraw'
    success-message: '&fYou have withdrawn &6%amount% coins &ffrom your bank!'
    fail-message: '&fYou don''t have &6%amount% coins &fin your bank!'
    invalid-number: '&cPlease enter a valid number.'

Last updated