mirror of
https://github.com/azerothcore/mod-anticheat.git
synced 2026-01-13 09:07:22 +00:00
Update (detection): New Detection No Fall Damage
New detection No Fall Damage Hack. Its when players use external apps to prevent fall damage from registering. New conf: Anticheat.NoFallDamage = 1 Autoupdate feature should apply the sql update automatically to add the new column. If not then apply it manually from either the sql\characters folder or the sql\updates folder
This commit is contained in:
@@ -16,6 +16,7 @@ CREATE TABLE IF NOT EXISTS `daily_players_reports` (
|
||||
`antiswim_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`gravity_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`antiknockback_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`no_fall_damage_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
@@ -37,5 +38,6 @@ CREATE TABLE IF NOT EXISTS `players_reports_status` (
|
||||
`antiswim_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`gravity_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`antiknockback_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
`no_fall_damage_reports` bigint unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
Reference in New Issue
Block a user