- Tags
Need help with coding or my plugins join the discord
This is a Minecraft plugin that allows you to freeze players if you think they are hacking with the command /freezer {player} this plugin will come in useful if you are not able to keep track of the player on your server and you need to screen share them on AnyDesk or team viewer but they are still playing well you can now do /freeze and they will not be able to do anything in till you have unfrozen them.
All Features add in this freeze plugin:This is a Minecraft plugin that allows you to freeze players if you think they are hacking with the command /freezer {player} this plugin will come in useful if you are not able to keep track of the player on your server and you need to screen share them on AnyDesk or team viewer but they are still playing well you can now do /freeze and they will not be able to do anything in till you have unfrozen them.
Stop players/users from doing commands when frozen ✔
Stop players/users from chatting when frozen ✔
Stop players/users from breaking blocks when frozen ✔
Stop players/users from dropping items when frozen ✔
Stop players/users from picking up items when frozen ✔
Stop players/users from moving items in inventory when frozen ✔
Stop players/users from enderpearling when frozen ✔
Added /panic command ✔
Added reload command ✔
Added to where you can edit every message in the config ✔
Added to where you can turn on and off the features ✔
Add support for more versions ✔
And much more to come if you have something you want added to this contact me on here and ill see if I can do it.
Commands:
/freeze (player}
/panic
/freezereload
Permissions:
freeze.allow <-- people with this permission will be able to do /freeze
panic.allow <-- people with this permission will be able to do /panic
panic.staffmessage <-- people with this permission will be able to get notefide when a player has went out and in to panic
freeze.reload <-- this allows people to use the /freezereload command
Code:
############################################################
# Freeze Command made by Chelsea1124
#
# Follow My Twitter to keep up with new projects!.
# https://twitter.com/chelsea1124HD
#
# Sub to my YouTube channel for fun and amazing content!.
# https://www.youtube.com/chelsea1124HD
#
# Join my discord to speak with others and made why coding!.
# https://discord.gg/dZtEBAJ
#
###########################################################
prefix: '&cFREEZE '
#Freeze command messages
freeze:
# Message sent to the user who forgot to put a username
IncorrectUsage: '&cPlease put a players username'
# Message sent to the user who tried to freeze a offline player
PlayerNotOnline: '&c&lPlayer is Not Online!'
# Message sent to the user who tried to freeze them self
YourSelf: '&cYou cant freeze your self'
# Message sent to the user who frozen the player after they have been frozen
PlayerFrozen: '&a %PLAYER% has been frozen'
# Message sent to the user who frozen the player after they have been unfrozen
PlayerUnFrozen: '&a %PLAYER% has been unfrozen'
# Message sent to player who has been frozen
MessageSentToPlayer:
- '&cYou have been frozen'
- '&cYou have been frozen'
- '&cYou have been frozen'
# This allows you to stop players from chatting
TurnChatOff: true
OnChatMessage: '&cNo chatting while frozen'
# This allows you to stop players from doing commands when they are frozen
CommandsOff: true
CommandMessage: '&cNo commands while frozen'
# This allows you to stop players from moving items in there inventory
InventoryMoveOff: true
InventoryMoveMessage: '&cYou cant move items in your inventory while frozen'
# This allows you to stop players from dropping items in their inventory
DropItemsOff: true
DropItemMessage: '&cNo dropping items while frozen'
# This allows you to stop players from picking up items
PickUpItemsOff: true
PickUpItemMessage: '&cYou cant pick up items your while frozen'
# This is the message that will get sent to the player when they are Interact in game when frozen
OnPlayerInteract: '&cStop trying to Interact'
# This is the message that will get sent to the player when they are trying to break a block when frozen
OnBlockBreak: '&cYou cant break blocks while your frozen'
panic:
#Message sent to the user after they are out of panic
Panic: '&aYou are now in Panic mode'
UnPanic: '&aYou are now out of Panic mode'
#Messages that will get sent to all the player with the permission panic.staffmessage --> place holder %PLAYER%
StaffPanicMessageIn: '&c%PLAYER% has gone into panic mode'
StaffPanicMessageOut: '&c%PLAYER% has gone out of panic mode'
#What the reload message will look like in game
reload-message: '&c○ &aYou have reloaded the config &c○'
# No perms messages
no-permissions: '&c&l(!) &cYou do not have permission to run this command.'
Also, I would love to say an amazing Thanks to Anhwylder for Teaching me my way around BukkitAPI and Java.