Initial commit
This commit is contained in:
16
src/main/resources/config.yml
Normal file
16
src/main/resources/config.yml
Normal file
@ -0,0 +1,16 @@
|
||||
# The default payout if the player has no overrides
|
||||
defaultPayout: 10
|
||||
# The amount of minutes to wait between each payment
|
||||
paymentDelay: 60
|
||||
# Whether to announce to a player that they've just been paid
|
||||
displayPaymentMessage: true
|
||||
# The amount of hours until a bonus is given. Set to -1 to disable.
|
||||
hoursUntilBonus: 100
|
||||
# A multiplier used to increase or decrease the time bonus
|
||||
bonusMultiplier: 1
|
||||
# The percentage of the payment to pay AFK players
|
||||
afkPercentage: 0
|
||||
# Overrides for specific groups
|
||||
groupPayouts: [ ]
|
||||
# Overrides for specific players
|
||||
playerPayouts: [ ]
|
21
src/main/resources/plugin.yml
Normal file
21
src/main/resources/plugin.yml
Normal file
@ -0,0 +1,21 @@
|
||||
name: "TimeIsMoney"
|
||||
version: '${project.version}'
|
||||
main: net.knarcraft.timeismoney.TimeIsMoney
|
||||
api-version: '1.20'
|
||||
prefix: 'TimeIsMoney'
|
||||
author: EpicKnarvik97
|
||||
depend:
|
||||
- Vault
|
||||
softdepend:
|
||||
- Essentials
|
||||
|
||||
commands:
|
||||
reload:
|
||||
permission: timeismoney.reload
|
||||
description: Reloads the plugin
|
||||
usage: /<command>
|
||||
|
||||
permissions:
|
||||
timeismoney.reload:
|
||||
description: Allows usage of the /reload command
|
||||
default: false
|
Reference in New Issue
Block a user