mirror of
https://github.com/azerothcore/mod-anticheat.git
synced 2026-01-13 00:58:35 +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;
|
||||
|
||||
6
sql/updates/characters/2022_08_12_00.sql
Normal file
6
sql/updates/characters/2022_08_12_00.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
-- run on character db
|
||||
ALTER TABLE `daily_players_reports`
|
||||
ADD COLUMN `no_fall_damage_reports` BIGINT UNSIGNED NOT NULL DEFAULT 0 AFTER `antiknockback_reports`;
|
||||
|
||||
ALTER TABLE `players_reports_status`
|
||||
ADD COLUMN `no_fall_damage_reports` BIGINT UNSIGNED NOT NULL DEFAULT 0 AFTER `antiknockback_reports`;
|
||||
Reference in New Issue
Block a user