Integration for Chat

To use our chat system, you have two options for registering commands.

First and most important thing - remove / stop chat resource!

Removing chat

To remove it, it should be in /resources/[cfx-default]/[gameplay] folder.

Stopping chat

To stop it you can add

stop chat

In server.cfg

Integrating order

This option is simple but we can't guarantee how your other resources will behave with this change.

You can start the ZSX_UIV2 resource right before your framework. By default, for QBCore, follow these steps:

QB Core / QBOX

  1. Open your server.cfg file.

  2. Find the line containing ensure [qb].

  3. Add the following line before it:

    ensure ZSX_UIV2

This ensures that ZSX_UIV2 loads first.

If you have set the ZSX_UIV2 directory to be inside /resources/[qb], it will not work! Make sure ZSX_UIV2 is placed outside of that directory for proper functionality.

ESX

  1. Open your server.cfg file.

  2. Find the line containing ensure [core].

  3. Add the following line before it:

    ensure ZSX_UIV2

If you have set the ZSX_UIV2 directory to be inside /resources/[core], it will not work! Make sure ZSX_UIV2 is placed outside of that directory for proper functionality.

Last updated