🛠️Setting Up infCore

infCore is a high-performance C#-based roleplay framework designed for speed, modularity, and deep customization. Here's how to get it up and running:

Step1: Set up a fivem server with the basic gamemode resources

Use the fivem official docs to set up a server with the default cfx resources

https://docs.fivem.net/docs/server-manual/setting-up-a-server/

Step 2: Downloading the infCore resource

Download the resource from the official github repository

https://github.com/Just-INF/infCore/releases/

Step 3: Setting up the resource

In your server .cfg set your database using convars

set infHostName "127.0.0.1"
set infPort "3306"
set infDatabase "infcore"
set infUserName "root"
set infPassword ""
Step 4: Start the resource

Add the resource in your .cfg file using ensure infCore , and start up the server.

We also recommend restarting the resource after the first time starting it up. All of the database tables will be created by the resource.

Last updated