mirror of
https://e.coding.net/circlecloud/Soulbound.git
synced 2025-11-24 21:36:20 +00:00
50
src/main/resources/config.yml
Normal file
50
src/main/resources/config.yml
Normal file
@@ -0,0 +1,50 @@
|
||||
#
|
||||
# Soulbound configuration
|
||||
# Last updated on ${project.version}-b${BUILD_NUMBER}
|
||||
#
|
||||
#####
|
||||
|
||||
#
|
||||
# Settings for Soulbound in general
|
||||
###
|
||||
General:
|
||||
# Allow Soulbound to report on basic anonymous usage
|
||||
Stats_Tracking: true
|
||||
|
||||
# Allow Soulbound to check if a new version is available
|
||||
Update_Check: true
|
||||
Prefer_Beta: false
|
||||
|
||||
# Should Soulbound print out debug messages?
|
||||
Verbose_Logging: false
|
||||
|
||||
# Should Soulbound over-write configs to update, or make new ones ending in .new?
|
||||
Config_Update_Overwrite: true
|
||||
|
||||
Soulbound:
|
||||
Show_Name_In_Lore: true
|
||||
Feedback_Messages_Enabled: true
|
||||
Prevent_Item_Drop: false
|
||||
Delete_On_Drop: false
|
||||
Allow_Item_Storing: true
|
||||
Infinite_Durability: false
|
||||
Blocked_Commands:
|
||||
/blockedcommand
|
||||
Commands_Bind_When_Used:
|
||||
/enchant
|
||||
|
||||
Dependency_Plugins:
|
||||
DiabloDrops:
|
||||
BindOnPickup: Legendary, Rare, Unidentified
|
||||
BindOnUse: Magical
|
||||
BindOnEquip: Set
|
||||
EpicBossRecoded:
|
||||
BindOnPickup: true
|
||||
BindOnUse: false
|
||||
BindOnEquip: false
|
||||
LoreLocks:
|
||||
Bind_Keys: true
|
||||
MythicDrops:
|
||||
BindOnPickup: common, uncommon, rare
|
||||
BindOnUse: terric, netheric
|
||||
BindOnEquip: endric
|
||||
35
src/main/resources/items.yml
Normal file
35
src/main/resources/items.yml
Normal file
@@ -0,0 +1,35 @@
|
||||
#
|
||||
# Soulbound item configuration
|
||||
#
|
||||
# Items in this config file will be automatically Soulbound to the player on certain
|
||||
# actions, such as dropping the item or picking it up.
|
||||
#
|
||||
# You can add items under "Items" using the exact material name. You can add a data value using a |
|
||||
# For example, WOOL|15 would be Material.WOOL with data value 15.
|
||||
#
|
||||
# The bare minimum of a Soulbound item is that it has Actions
|
||||
#
|
||||
# Name: This is the displayname of an item
|
||||
#
|
||||
# Lore: List one or more lines of lore here
|
||||
#
|
||||
# Actions: The actions when the item should be soulbound to the player.
|
||||
# Valid values are: CRAFT, OPEN_CHEST, PICKUP_ITEM, DROP_ITEM, RESPAWN, KIT
|
||||
#
|
||||
#
|
||||
###
|
||||
|
||||
Items:
|
||||
DIAMOND_SPADE:
|
||||
Lore:
|
||||
- Made from diamond,
|
||||
- can dig dirt!
|
||||
Actions:
|
||||
- CRAFT
|
||||
- OPEN_CHEST
|
||||
|
||||
WOOL|15:
|
||||
Name: Black Piece Of Wool
|
||||
Actions:
|
||||
- PICKUP_ITEM
|
||||
- DROP_ITEM
|
||||
56
src/main/resources/plugin.yml
Normal file
56
src/main/resources/plugin.yml
Normal file
@@ -0,0 +1,56 @@
|
||||
name: Soulbound
|
||||
version: 1.1.10-SNAPSHOT-b84
|
||||
author: TfT_02
|
||||
main: com.me.tft_02.soulbound.Soulbound
|
||||
description: Soulbound items for your RPG servers!
|
||||
softdepend: [EpicBossRecoded, LoreLocks, MythicDrops]
|
||||
commands:
|
||||
soulbound:
|
||||
description: Usage /soulbound
|
||||
permission-message: You don't have <permission>
|
||||
bind:
|
||||
description: Usage /bind
|
||||
alias: bound
|
||||
permission: soulbound.commands.bind
|
||||
permission-message: You don't have <permission>
|
||||
bindonpickup:
|
||||
description: Usage /bindonpickup
|
||||
permission: soulbound.commands.bindonpickup
|
||||
permission-message: You don't have <permission>
|
||||
bindonuse:
|
||||
description: Usage /bindonuse
|
||||
permission: soulbound.commands.bindonuse
|
||||
permission-message: You don't have <permission>
|
||||
bindonequip:
|
||||
description: Usage /bindonequip
|
||||
permission: soulbound.commands.bindonequip
|
||||
permission-message: You don't have <permission>
|
||||
unbind:
|
||||
description: Usage /unbind
|
||||
alias: unbound
|
||||
permission: soulbound.commands.unbind
|
||||
permission-message: You don't have <permission>
|
||||
permissions:
|
||||
soulbound.commands.all:
|
||||
description: Gives access to the Soulbound commands
|
||||
default: op
|
||||
children:
|
||||
soulbound.commands.bind: true
|
||||
soulbound.commands.bindonpickup: true
|
||||
soulbound.commands.bindonuse: true
|
||||
soulbound.commands.bindonequip: true
|
||||
soulbound.commands.unbind: true
|
||||
soulbound.commands.reload: true
|
||||
soulbound.updatecheck: true
|
||||
soulbound.pickup.bypass:
|
||||
description: Users with this permission will be able to pickup Soulbound items that do not belong to them.
|
||||
default: false
|
||||
soulbound.items.keep_on_death:
|
||||
description: Users with this permission will keep their Soulbound items after dying
|
||||
default: false
|
||||
soulbound.items.delete_on_death:
|
||||
description: Users with this permission will have their Soulbound items deleted on death
|
||||
default: false
|
||||
soulbound.updatecheck:
|
||||
description: Users with this permission will receive a notification when there is a new version available.
|
||||
default: op
|
||||
Reference in New Issue
Block a user