Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

feat (anticheat\db\conf): Skyfire Anticheat Manager #1191

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2e18e19
feat (anticheat): Anticheat Port
acidmanifesto Nov 22, 2023
9c35e6a
update (anticheat): Remove Lua Blocker
acidmanifesto Nov 24, 2023
b4f7db8
update (anticheat): Ace Singleton
acidmanifesto Nov 24, 2023
9225812
update (anticheat): singleton pt 2
acidmanifesto Nov 24, 2023
c52c93a
update (anticheat): LUA Blocker removal pt2
acidmanifesto Nov 24, 2023
91df889
update (anticheat): Remove unused variable
acidmanifesto Nov 24, 2023
961ab62
update (anticheat): Lua Blocker Removal PT 3
acidmanifesto Nov 24, 2023
140854f
update (anticheat): Move ace singleton
acidmanifesto Nov 25, 2023
fc43123
update (anticheat): Remove lua blocker leftover
acidmanifesto Nov 25, 2023
abdf74e
update (anticheat): Reduce code complexity PT1
acidmanifesto Nov 25, 2023
7531518
chore (antcheat): whitespace
acidmanifesto Nov 25, 2023
181be46
update (anticheat): include cleanup
acidmanifesto Nov 25, 2023
db8fc87
update (anticehat): static clean up
acidmanifesto Nov 25, 2023
c5a4371
update (anticheat): Revert define change
acidmanifesto Nov 25, 2023
e95afa0
update (anticheat)L cmake cmd fix
acidmanifesto Nov 25, 2023
9a03203
update (anticheat): Parole gps correction
acidmanifesto Nov 26, 2023
6c38c92
update (anticheat): Added case default
acidmanifesto Nov 28, 2023
cc99ea7
update (anticheat): Twin Peaks BG
acidmanifesto Nov 30, 2023
83e023d
update (anticheat): Replace case swith a better if
acidmanifesto Dec 18, 2023
6cbf038
update (anticheat): False hits for select elevators
acidmanifesto Jan 5, 2024
1637b18
add (anticheat\log): add logging
acidmanifesto Feb 19, 2024
147ff4d
update (anticheat): Reorder
acidmanifesto Feb 20, 2024
fa90c0f
update (anticheat): :Reorder
acidmanifesto Feb 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions sql/updates/characters/2023_11_12_00_characters.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
DROP TABLE `daily_players_reports`;
CREATE TABLE IF NOT EXISTS `daily_players_reports` (
`guid` int unsigned NOT NULL DEFAULT 0,
`creation_time` int unsigned NOT NULL DEFAULT 0,
`average` float NOT NULL DEFAULT 0,
`total_reports` bigint unsigned NOT NULL DEFAULT 0,
`speed_reports` bigint unsigned NOT NULL DEFAULT 0,
`fly_reports` bigint unsigned NOT NULL DEFAULT 0,
`jump_reports` bigint unsigned NOT NULL DEFAULT 0,
`waterwalk_reports` bigint unsigned NOT NULL DEFAULT 0,
`teleportplane_reports` bigint unsigned NOT NULL DEFAULT 0,
`climb_reports` bigint unsigned NOT NULL DEFAULT 0,
`time_maniputation_reports` bigint unsigned NOT NULL DEFAULT 0,
`gravity_reports` bigint unsigned NOT NULL DEFAULT 0,
`teleport_reports` bigint unsigned NOT NULL DEFAULT 0,
`bg_start_reports` bigint unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

DROP TABLE `players_reports_status`;
CREATE TABLE IF NOT EXISTS `players_reports_status` (
`guid` int unsigned NOT NULL DEFAULT 0,
`creation_time` int unsigned NOT NULL DEFAULT 0,
`average` float NOT NULL DEFAULT 0,
`total_reports` bigint unsigned NOT NULL DEFAULT 0,
`speed_reports` bigint unsigned NOT NULL DEFAULT 0,
`fly_reports` bigint unsigned NOT NULL DEFAULT 0,
`jump_reports` bigint unsigned NOT NULL DEFAULT 0,
`waterwalk_reports` bigint unsigned NOT NULL DEFAULT 0,
`teleportplane_reports` bigint unsigned NOT NULL DEFAULT 0,
`climb_reports` bigint unsigned NOT NULL DEFAULT 0,
`time_maniputation_reports` bigint unsigned NOT NULL DEFAULT 0,
`gravity_reports` bigint unsigned NOT NULL DEFAULT 0,
`teleport_reports` bigint unsigned NOT NULL DEFAULT 0,
`bg_start_reports` bigint unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

3 changes: 3 additions & 0 deletions sql/updates/world/2023_11_22_world.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
DELETE FROM `skyfire_string` WHERE `entry`=11002;
INSERT INTO `skyfire_string` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`, `content_loc9`, `content_loc10`, `content_loc11`)VALUES
(11002, '|cFFFFBF00[%s]:|cFFFFFFFF|Hplayer:%s|h[%s]|h|cFF00FFFF potential |r|cFFFFFF00%s|r%s x %u|r', null, null, null, null, null, null, null, null, null, null, null);
Loading