feat (new detection): Anti-Knock Back Detection

Anti-knock Back Detection established.
This commit is contained in:
MDIC
2022-08-05 20:54:54 -04:00
parent 3398b78eee
commit eaa8e3fc3e
5 changed files with 76 additions and 42 deletions

View File

@@ -15,6 +15,7 @@ CREATE TABLE IF NOT EXISTS `daily_players_reports` (
`zaxis_reports` bigint unsigned NOT NULL DEFAULT 0,
`antiswim_reports` bigint unsigned NOT NULL DEFAULT 0,
`gravity_reports` bigint unsigned NOT NULL DEFAULT 0,
`antiknockback_reports` bigint unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
@@ -35,5 +36,6 @@ CREATE TABLE IF NOT EXISTS `players_reports_status` (
`zaxis_reports` bigint unsigned NOT NULL DEFAULT 0,
`antiswim_reports` bigint unsigned NOT NULL DEFAULT 0,
`gravity_reports` bigint unsigned NOT NULL DEFAULT 0,
`antiknockback_reports` bigint unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;