Links

Hoe Boosters

Dependency: Supreme Hoes, Cost: $7.50 USD

Supreme Hoe Boosters

This addon allows servers to create "Boosters" which affect the sell price & token collection amounts when used in conjunction with our Harvester Hoes plugin.
Booster
Description
MONEY
Gives a bonus money multiplier to AutoSell enchantment.
TOKENS
Gives bonus tokens when farming cane.

Commands & Permissions

Command
Permission
Description
/booster
everyone
Show a player their current booster stats
/badmin give <name> <money/tokens> <multiplier> <minutes>
boosters.give
Give a player a booster
/badmin remove
booster.remove
Clear boosters from a player

Configuration - config.json

{
"EnableBoosterCommand": true,
"TokenBoosterItem": {
"displayName": "&e&lToken &6&lBooster",
"lore": [
" ",
"&6&l* &e&lAMOUNT: &f{amount}x",
"&6&l* &e&lDURATION: &f{time} minutes",
" ",
"&7&o(( Right-Click to activate! ))"
],
"type": "SUNFLOWER",
"enchanted": true,
"unstackable": true,
"amount": 1,
"enchants": {}
},
"MoneyBoosterItem": {
"displayName": "&a&lAutoSell &2&lBooster",
"lore": [
" ",
"&6&l* &e&lAMOUNT: &f{amount}x",
"&6&l* &e&lDURATION: &f{time} minutes",
" ",
"&7&o(( Right-Click to activate! ))"
],
"type": "EMERALD",
"enchanted": true,
"unstackable": true,
"amount": 1,
"enchants": {}
}
}

Configuration - language.json

{
"BoosterAppliedMessage": {
"type": "CHAT",
"message": [
"&a&l[!] &2{amount} {type}&a booster applied for &f{time}&a minutes!"
]
},
"BoosterAlreadyActive": {
"type": "CHAT",
"message": [
"&c&l[!] &cYou already have an active booster!"
]
},
"BoosterExpire": {
"type": "CHAT",
"message": [
"&c&l[!] &cYour &4{amount} {type}&c booster has expired!"
]
},
"NoActiveBooster": {
"type": "CHAT",
"message": [
"&c&l[!] &cYou don't have any active boosters!"
]
},
"ActiveBooster": {
"type": "CHAT",
"message": [
"&a&l[!] &2{amount} {type}&a expires in {time}!"
]
}
}