feat (new detection\char sql\conf): Anti-swim Detection added

rerun sql for character db to support the new collumn.
new conf Anticheat.AntiSwimClimbHack = 1
This commit is contained in:
MDIC
2022-05-03 17:07:13 -04:00
parent a354b09f1d
commit 05ff193afb
6 changed files with 37 additions and 6 deletions

View File

@@ -13,6 +13,7 @@ CREATE TABLE IF NOT EXISTS `daily_players_reports` (
`teleport_reports` bigint unsigned NOT NULL DEFAULT 0,
`ignorecontrol_reports` bigint unsigned NOT NULL DEFAULT 0,
`zaxis_reports` bigint unsigned NOT NULL DEFAULT 0,
`antiswim_reports` bigint unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
@@ -31,5 +32,6 @@ CREATE TABLE IF NOT EXISTS `players_reports_status` (
`teleport_reports` bigint unsigned NOT NULL DEFAULT 0,
`ignorecontrol_reports` bigint unsigned NOT NULL DEFAULT 0,
`zaxis_reports` bigint unsigned NOT NULL DEFAULT 0,
`antiswim_reports` bigint unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;