HTML:
# +----------------------------------------------------------------------------------------------+
# | TaxesLite v3.0 |
# | Impuestos periódicos vía Vault |
# +----------------------------------------------------------------------------------------------+
config:
# Percentage to collect from each player's balance. (e.g., 10.0 = 10%)
# If the player doesn’t have enough money, no percentage is collected.
# Fallback percentage if the player is not in any group.
percentage: 10.0
# Interval for automatic collection. Format: "Xd,Yh,Zm".
# Examples: "7d,0h,0m" (weekly), "0d,24h,0m" (daily), "0d,0h,30m" (every 30 minutes)
period: "7d,0h,0m"
# Automatically run the collection every 'period'?
auto-collect-enabled: true
# Include offline players? (requires the economy provider to support OfflinePlayer)
include-offline: true
# Players with op are exempt (online). For offline players, permissions cannot be checked.
exempt-ops: true
# Players with this permission are exempt (online). For offline players, permissions cannot be checked.
exempt-permission: "taxeslite.exempt"
# Default message language: "ES" or "EN"
language: "EN"
# MESSAGES
Messages-ES:
collected-broadcast: "
&7[&cTaxesLite&7] &aSe recolectó los impuestos correspondientes a los jugadores."
collected-admin: "&aRecolectaste &e{percentage}% &adel dinero a &b{count}&a jugadores. Total recaudado: &b{total}."
collected-player: "&cSe te aplicó un impuesto del &e{percentage}%&c: &b-{amount} &7(Nuevo saldo: &b{new_balance}&7)"
player-current: "&aDinero actual: &b{balance}"
player-not-found: "&cNo se encontró al jugador &e{target}"
no-permission: "&cNo tienes permiso para este comando."
reloaded: "&aConfiguración recargada."
usage: "&eUso: &7/taxeslite <collect|reload> [all|player]"
Messages-EN:
collected-broadcast: "&7[&cTaxesLite&7] &aThe corresponding taxes were collected a players."
collected-admin: "&aYou collected &e{percentage}% &afrom &b{count}&a players. Total: &b{total}."
collected-player: "&cA tax of &e{percentage}%&c was applied: &b-{amount} &7(New balance: &b{new_balance}&7)"
player-current: "&aCurrent money: &b{balance}"
player-not-found: "&cPlayer not found: &e{target}"
no-permission: "&cYou don't have permission."
reloaded: "&aConfiguration reloaded."
usage: "&eUsage: &7/taxeslite <collect|reload> [all|player]"
# Groups for tax collection. Add the permission in your permissions plugin
# If you have /op, it will take the first group, in this case 'premium', with an 8.0 percent chance.
groups:
premium:
permission: "taxeslite.group.premium"
percentage: 8.0
vip:
permission: "taxeslite.group.vip"
percentage: 5.0
elite:
permission: "taxeslite.group.elite"
percentage: 2.5