Upload files to "src/main/resources"
This commit is contained in:
4
src/main/resources/colors.yml
Normal file
4
src/main/resources/colors.yml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
colors:
|
||||||
|
red: "#FF0000"
|
||||||
|
gold: "#FFB133"
|
||||||
|
black: "#000000"
|
||||||
BIN
src/main/resources/config.yml
Normal file
BIN
src/main/resources/config.yml
Normal file
Binary file not shown.
132
src/main/resources/plugin.yml
Normal file
132
src/main/resources/plugin.yml
Normal file
@@ -0,0 +1,132 @@
|
|||||||
|
name: PlayerUtils
|
||||||
|
main: com.wulliestudio.playerutils.PluginMain
|
||||||
|
version: 1.0.0
|
||||||
|
api-version: 1.21
|
||||||
|
folia-supported: true
|
||||||
|
description: Utility plugin with homes, teleport requests, kill, and name color.
|
||||||
|
|
||||||
|
commands:
|
||||||
|
nc:
|
||||||
|
description: Set your name color
|
||||||
|
usage: /nc
|
||||||
|
permission: playerutils.namecolor
|
||||||
|
|
||||||
|
sethome:
|
||||||
|
description: Set a home
|
||||||
|
usage: /sethome <name>
|
||||||
|
permission: playerutils.sethome
|
||||||
|
|
||||||
|
home:
|
||||||
|
description: Teleport to a home
|
||||||
|
usage: /home <name>
|
||||||
|
permission: playerutils.home
|
||||||
|
|
||||||
|
delhome:
|
||||||
|
description: Delete a home
|
||||||
|
usage: /delhome <name>
|
||||||
|
permission: playerutils.delhome
|
||||||
|
|
||||||
|
homes:
|
||||||
|
description: List your homes
|
||||||
|
usage: /homes
|
||||||
|
permission: playerutils.homes
|
||||||
|
|
||||||
|
kill:
|
||||||
|
description: Kill yourself or another player
|
||||||
|
usage: /kill [player]
|
||||||
|
permission: playerutils.kill
|
||||||
|
|
||||||
|
tpa:
|
||||||
|
description: Request to teleport to a player
|
||||||
|
usage: /tpa <player>
|
||||||
|
permission: playerutils.tpa
|
||||||
|
|
||||||
|
tpaccept:
|
||||||
|
description: Accept a teleport request
|
||||||
|
usage: /tpaccept
|
||||||
|
permission: playerutils.tpa
|
||||||
|
|
||||||
|
tpdeny:
|
||||||
|
description: Deny a teleport request
|
||||||
|
usage: /tpdeny
|
||||||
|
permission: playerutils.tpa
|
||||||
|
|
||||||
|
rtp:
|
||||||
|
description: teleport to a random point in spawn
|
||||||
|
usage: /rtp
|
||||||
|
permissions: playerutils.rtp
|
||||||
|
|
||||||
|
help:
|
||||||
|
description: displays server commands avalible to the player
|
||||||
|
usage: /help
|
||||||
|
permissions: playerutils.help
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
playerutils.*:
|
||||||
|
description: Access to all PlayerUtils features
|
||||||
|
default: op
|
||||||
|
children:
|
||||||
|
playerutils.namecolor: true
|
||||||
|
playerutils.sethome: true
|
||||||
|
playerutils.home: true
|
||||||
|
playerutils.delhome: true
|
||||||
|
playerutils.homes: true
|
||||||
|
playerutils.kill: true
|
||||||
|
playerutils.tpa: true
|
||||||
|
|
||||||
|
playerutils.namecolor:
|
||||||
|
description: Use /nc
|
||||||
|
default: true
|
||||||
|
|
||||||
|
playerutils.rtp:
|
||||||
|
description: Use /rtp
|
||||||
|
default: true
|
||||||
|
|
||||||
|
playerutils.help:
|
||||||
|
description: Use /help
|
||||||
|
default: true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
playerutils.sethome:
|
||||||
|
description: Use /sethome
|
||||||
|
default: true
|
||||||
|
|
||||||
|
playerutils.home:
|
||||||
|
description: Use /home
|
||||||
|
default: true
|
||||||
|
|
||||||
|
playerutils.delhome:
|
||||||
|
description: Use /delhome
|
||||||
|
default: true
|
||||||
|
|
||||||
|
playerutils.homes:
|
||||||
|
description: Use /homes
|
||||||
|
default: true
|
||||||
|
|
||||||
|
# Home limits
|
||||||
|
homes.max.3:
|
||||||
|
description: Allows up to 3 homes
|
||||||
|
default: true
|
||||||
|
|
||||||
|
homes.max.5:
|
||||||
|
description: Allows up to 5 homes
|
||||||
|
|
||||||
|
homes.max.10:
|
||||||
|
description: Allows up to 10 homes
|
||||||
|
|
||||||
|
homes.max.20:
|
||||||
|
description: Allows up to 20 homes
|
||||||
|
|
||||||
|
homes.unlimited:
|
||||||
|
description: Unlimited homes
|
||||||
|
default: op
|
||||||
|
|
||||||
|
playerutils.kill:
|
||||||
|
description: Use /kill
|
||||||
|
default: op
|
||||||
|
|
||||||
|
playerutils.tpa:
|
||||||
|
description: Use /tpa, /tpaccept, /tpdeny
|
||||||
|
default: true
|
||||||
|
|
||||||
Reference in New Issue
Block a user