Installation

Good to know: There is also a YouTube video on how to install our AntiCheat.

  1. Import the "sql.sql" into the MySQL database.

  2. Download our anticheat and drag the anticheat + the addons "[LYXOS-ADDONS]" into your FiveM script folder.

  3. Go into the "Lyxos" folder then into the "Configs" folder and open the "Config-Server.lua" file.

  4. Enter the license you received from us under "Lyxos.License". (OLD)

  5. And the rest you can configure as you wish.

If you don't have a "sql.sql" file for whatever reason:

CREATE TABLE `lyxos_bans` (
  `name` varchar(50) COLLATE utf8mb4_bin NOT NULL,
  `liveid` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  `xbl` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  `hwid` varchar(255) COLLATE utf8mb4_bin NOT NULL,
  `ip` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  `discord` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  `license` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  `date` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  `bantrue` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  `reason` varchar(255) COLLATE utf8mb4_bin NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

ALTER TABLE `lyxos_bans`
  ADD PRIMARY KEY (`hwid`);
COMMIT;

Last updated