πŸ“€Installation

Installation guide and fundamental concepts of crm-core.

crm-core is a free resource, included with any package you buy from our store. You only need to install it once, and it serves as the foundation for all your scripts. It's essential to ensure you have the latest version for optimal performance.

1. Download Resource

To begin, download your recently purchased resource from corem.tebex.io. To do this, log in to your cfx portal / keymaster account and navigate to the 'Asset Grants' section, where you will find your owned resources.

2. Dependencies

Resource name
Download link

3. Asset Arrangement

  1. Create a Folder: In your resources directory, create a new folder and name it [crm-scripts].

  2. Organize Resources: Place the crm-core package in this newly created [crm-scripts] folder. Additionally, if you have purchased any other CoreM resources, also put them in the same folder.

  3. Server.cfg file: In your server.cfg file, you should ensure the crm-core resource first, followed by the [crm-scripts] folder.

  4. You should ensure corem scripts always after your qb-core / qbx-core / es_extended resource!

ensure crm-core
ensure [crm-scripts]

4. Language

In your server.cfg file make sure to choose crm-core language, and it will be automatically applied to all CoreM scripts.

Example:

setr crm-core:language "en"

Languages Supported:

Code
Language

en

English.

fr

French.

bg

Bulgarian.

de

German.

es

Spanish.

hu

Hungarian.

it

Italian.

ar

Arabic.

nl

Dutch.

pt

Portuguese.

ro

Romanian.

5. Colors

You have the ability to modify the colors of all our scripts centrally from a single location.

crm-core -> crm-web -> crm-styles -> crm-main.css

/* ************************ crm-atoms ************************ */

:root {
    --crm-dark: 39, 39, 39;
    --crm-second: 52, 52, 52;
    --crm-third: 30, 30, 30;
    --crm-primary: 255, 176, 96; 
    --crm-white: 255, 255, 255;
    --crm-danger: 218, 55, 60;
    --crm-success: 36, 128, 70;
    --crm-warning: 207, 177, 54;
}

Last updated