mirror of
https://github.com/azerothcore/mod-anticheat.git
synced 2026-01-13 09:07:22 +00:00
Update: New SQL and Accurate Column Counting
New Character DB sql, accurate column counting for all cheat detections now in db as well (Teleportation, ignore control, zaxis)
This commit is contained in:
@@ -10,6 +10,9 @@ CREATE TABLE IF NOT EXISTS `daily_players_reports` (
|
||||
`waterwalk_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`teleportplane_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`climb_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`teleport_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`ignorecontrol_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`zaxis_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
@@ -25,5 +28,8 @@ CREATE TABLE IF NOT EXISTS `players_reports_status` (
|
||||
`waterwalk_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`teleportplane_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`climb_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`teleport_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`ignorecontrol_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`zaxis_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
Reference in New Issue
Block a user