Last active
June 14, 2022 11:44
-
-
Save Baba0bab/f78b1596269e3023e0b312c6d66c5ab9 to your computer and use it in GitHub Desktop.
DeltaShield - Checks configuration (English)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ╔══════════════════════╗ | |
| # ║ DeltaShield ║ | |
| # ║ > Checks file ║ | |
| # ╚══════════════════════╝ | |
| # Configuration version | |
| config-version: 1.0.0 | |
| # All settings: | |
| # description: Description of the violation | |
| # enabled: Enable or disable the check | |
| # punishable: Enable or disable the punishment for this check | |
| # max-violations: Number of max violations can make player before get punished | |
| # cancel: Number of the multiple of violations for it to be cancelled (optional) | |
| # punishment-command: Command that the server must execute to apply the punishment (optional) | |
| # bypass-delay: Activate to remove the delay before executing the punishment (optional) | |
| # Example: | |
| # description: Did something wrong | |
| # enabled: true | |
| # punishable: true | |
| # max-violations: 10 | |
| # punishment-command: 'kick %player% You won't have to do this again' | |
| # bypass-delay: true | |
| checks: | |
| punishment-command: 'kick %player% Automatic cheat detection' | |
| climb: | |
| a: | |
| description: Wrong climbing speed | |
| enabled: true | |
| punishable: true | |
| max-violations: 10 | |
| flight: | |
| a: | |
| description: 'Linear move in air' | |
| enabled: true | |
| punishable: true | |
| max-violations: 10 | |
| b: | |
| description: 'Slow Falling' | |
| enabled: true | |
| punishable: true | |
| max-violations: 10 | |
| c: | |
| description: Jumping in the air | |
| enabled: true | |
| punishable: true | |
| max-violations: 5 | |
| cancel: -1 | |
| groundspoof: | |
| a: | |
| description: 'Player on ground clientside while serverside not on ground' | |
| enabled: true | |
| punishable: true | |
| max-violations: 5 | |
| punishment-command: 'minecraft:kick %player% Connection timed out: no further information' | |
| inventory: | |
| a: | |
| description: Clicking while moving | |
| enabled: true | |
| punishable: true | |
| max-violations: 10 | |
| invalid: | |
| a: | |
| description: 'Constant motion' | |
| enabled: true | |
| punishable: true | |
| max-violations: 25 | |
| d: | |
| description: 'Rounded motion (XYZ; Y)' | |
| enabled: true | |
| punishable: true | |
| max-violations: 15 | |
| e: | |
| description: Invalid increased vertical movement | |
| enabled: true | |
| punishable: true | |
| max-violations: 20 | |
| cancel: -1 | |
| speed: | |
| a: | |
| description: 'Too long movement' | |
| enabled: true | |
| punishable: true | |
| max-violations: 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment