HazardTheDutchAD
Muted
- Sep 24, 2016
- 7,217
- 21,922
Just a few ideas to help the Watcher perform it's tasks better
Create an if variable so if the player was to jump a certain amount of blocks high when they are on a block they will get banned by the Watcher.
if {('<playername>' is
get.player.x
get.player.y
get.player.z {
minecraft.player.jump = '>5'
run command.watcher.ban}
});
If a player was to have been caught inside of a block (no-clip) this command (example) would also probably help.
if {('playername') is
get.player.x
get.player.y
get.player.z
minecraft.block.isliquid('false');
run command.watcher.ban}
});
If a player was to have been caught fly hacking on the server this command (example) would probably help a lot.
if {('playername') is
get player.x
get.player.y
get.player.z
if {
player.x
player.y
player.z
= block.height('>10')
if player.block.stand = 'true' return
{
if player.block,stand = 'false'
{
run command.watcher.ban
}}}});
If a player is speed hacking this example may help
if {
('playername') is
minecraft.player.speed = ('2')
return
if {
('playername') is minecraft.player.speed = ('3')
run command.watcher.ban
}});
Just a few ideas to try and help improve the Watcher.
Create an if variable so if the player was to jump a certain amount of blocks high when they are on a block they will get banned by the Watcher.
if {('<playername>' is
get.player.x
get.player.y
get.player.z {
minecraft.player.jump = '>5'
run command.watcher.ban}
});
If a player was to have been caught inside of a block (no-clip) this command (example) would also probably help.
if {('playername') is
get.player.x
get.player.y
get.player.z
minecraft.block.isliquid('false');
run command.watcher.ban}
});
If a player was to have been caught fly hacking on the server this command (example) would probably help a lot.
if {('playername') is
get player.x
get.player.y
get.player.z
if {
player.x
player.y
player.z
= block.height('>10')
if player.block.stand = 'true' return
{
if player.block,stand = 'false'
{
run command.watcher.ban
}}}});
If a player is speed hacking this example may help
if {
('playername') is
minecraft.player.speed = ('2')
return
if {
('playername') is minecraft.player.speed = ('3')
run command.watcher.ban
}});
Just a few ideas to try and help improve the Watcher.