Add PAPIProxyBridge Suport, Customizable Placeholders & Minor Changes
Changes:
- Add customizable placeholders (new file:
placeholders.yml)
- Add PAPIProxyBridge support
Code (YAML):
# Some general Placeholders to work with: # %pat_general_user% = Get the name of the user who receives this message. # %pat_general_version_current% = Get current version name of PAT. # %pat_general_version_newest% = Get newest version name of PAT.
# Placeholders of some of the messages in the config.yml: # %pat_message_unknowncommand% = Get the "unknown command"-message from the config.yml of PAT. [cancel-blocked-command] # %pat_message_blocked% = Get the "command blocked"-message from the config.yml of PAT. [custom-unknown-command]
# Placeholders to list all commands: # %pat_list_size_commands% = Get the amount of all listed commands. # %pat_list_commands% = Get all listed commands. # %pat_list_sorted_commands% = Get all listed commands in alphabetic order. (A-Z) # %pat_list_reversed_groups% = Get all listed commands in reversed alphabetic order. (Z-A)
# Placeholders to list all commands of a group: (replace 'xxx' with the group-name) # %pat_list_size_commands_group_xxx% = Get the amount of all commands of a group. # %pat_list_commands_group_xxx% = Get all commands of a group. # %pat_list_sorted_commands_group_xxx% = Get all commands of a group in alphabetic order. (A-Z) # %pat_list_reversed_commands_group_xxx% = Get all commands of a group in reversed alphabetic order. (Z-A)
# Placeholders to list all groups: # %pat_list_size_groups% = Get the amount of all available groups. # %pat_list_groups% = Get all groups. # %pat_list_sorted_groups% = Get all groups in alphabetic order. (A-Z) # %pat_list_reversed_groups% = Get all groups in reversed alphabetic order. (Z-A)