IgiCodes / igicore

Base framework for GTAV FiveM roleplaying servers but in C#
GNU General Public License v3.0
20 stars 7 forks source link

THIS PROJECT IS DEPRECATED AND NO LONGER MAINTAINED. PLEASE SEE NFive FOR THE NEW PROJECT.

igicore

License

Complete base framework for GTAV FiveM roleplay servers built entirely in managed C#. This project aims to replace existing FiveM server resources with a single managed framework to build upon.

This project is primarily developed live on my Twitch stream with the help and input of viewers. Planned features and progress is tracked on Trello.

Currently a work in progress

Development

Building the project will require Visual Studio 2017 and Node.js to be installed. A MySQL database is required for storage, MariaDB is recommended.

This resource currently replaces all stock server resources; make sure you remove them from your configuration. The server will always try to load sessionmanager, even if it is not in your configuration, so you must delete or rename the resource.

  1. Clone this repo inside of your FiveM server's resources directory:

    git clone https://github.com/Igirisujin/igicore.git
    cd igicore
  2. Build the project in Visual Studio.

  3. Install the interface dependencies:

    cd Interface
    npm install
  4. Build the interface:

    npm run build
  5. Edit your server.cfg file to include the following line below your existing configuration:

    start igicore
  6. Edit igicore.yml with your database connection information and server details as needed.

Note: You may need to manually preconfigure your MySQL server to default the character set to Unicode. For MariaDB add --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci to the server arguments.