Guardian Chat V1 - Installation

1. Prerequisite: Base Chat Resource

First, ensure you have the latest version of the default CitizenFX chat resource.

2. Update Server Artifacts

Your server must be running on a modern build to support the script's logic. Ensure your artifacts version is 5181 or higher.

3. Load Order (Server.cfg)

Open your server.cfg and ensure the resources are initialized in this specific sequence:

Plaintext

ensure chat
ensure GuardianChatV1

Important: The base chat resource must start before Guardian Chat to allow the UI and message events to initialize properly.

Config = {}

Config.ServerName = "GUARDIAN DEVELOPMENT"

Config.AnnounceInterval = 15 -- In minutes

Config.AnnounceMessage = "Don't forget to join our Discord for updates and support!"

Config.Permissions = {
    YouTube   = "guardian.chat.youtube",
    Twitch    = "guardian.chat.twitch",
    ClearChat = "guardian.chat.clearchat"
}

Last updated