neon_reports

Installation Guide

Run the following SQL code in your database:

CREATE TABLE `neon_reports` (
    `id` INT NOT NULL AUTO_INCREMENT,
    `reporting_player` VARCHAR(255) NOT NULL,
    `reporting_id` INT NOT NULL,
    `reported_player` VARCHAR(255) NOT NULL,
    `reported_id` INT NOT NULL,
    `reason` TEXT NOT NULL,
    `original_position` JSON DEFAULT NULL,
    PRIMARY KEY (`id`)
);

Configure the Discord Webhook URLs (to enable logging)

Open the server/sv_utils.lua file and insert the webhook URL at lines 1, 2 & 3.

Last updated