Initial commit
This commit is contained in:
8
src/main/resources/config.yml
Normal file
8
src/main/resources/config.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
# Whether to ignore the case (lowercase/uppercase) of the paid sign text. The option can be set on a per-sign basis, but
|
||||
# this value is used if not specified. The correct value depends on whether the plugin signs it should match are case-sensitive or not.
|
||||
ignoreCase: true
|
||||
|
||||
# Whether to ignore any color or formatting applied to the text when trying to match a paid sign's text. The option can
|
||||
# be set on a per-sign basis, but this value is used if not specified. The correct value depends on whether the plugin
|
||||
# signs it should match allow coloring or not.
|
||||
ignoreColor: false
|
39
src/main/resources/plugin.yml
Normal file
39
src/main/resources/plugin.yml
Normal file
@@ -0,0 +1,39 @@
|
||||
name: PaidSigns
|
||||
version: '${project.version}'
|
||||
main: net.knarcraft.paidsigns.PaidSigns
|
||||
api-version: 1.18
|
||||
prefix: PaidSigns
|
||||
depend: [ Vault ]
|
||||
authors: [ EpicKnarvik97 ]
|
||||
description: Add costs for creating plugin signs
|
||||
website: https://git.knarcraft.net
|
||||
commands:
|
||||
addpaidsign:
|
||||
description: Used to add a new paid sign
|
||||
usage: /<command> <id (the text to look for)> <line> <cost> [ignore case] [ignore color]
|
||||
permission: paidsigns.add
|
||||
removepaidsign:
|
||||
description: Used to remove a paid sign
|
||||
usage: /<command> <id (the text to look for)> <line>
|
||||
permission: paidsigns.remove
|
||||
reload:
|
||||
description: Reloads paid signs from disk
|
||||
usage: /<command>
|
||||
permision: paidsigns.reload
|
||||
permissions:
|
||||
paidsigns.*:
|
||||
description: Grants all paid signs permissions
|
||||
default: op
|
||||
children:
|
||||
paidsigns.create: true
|
||||
paidsigns.paymentexempt: true
|
||||
paidsigns.reload: true
|
||||
paidsigns.add:
|
||||
description: Grants the permission to add/remove a paid sign
|
||||
default: false
|
||||
paidsigns.reload:
|
||||
description: Grants the permissions to reload the plugin
|
||||
default: false
|
||||
paidsigns.paymentexempt:
|
||||
description: Makes this player exempt from the cost of paid signs
|
||||
default: false
|
Reference in New Issue
Block a user