All Projects → NFive → NFive

NFive / NFive

Licence: GPL-3.0 license
NFive is a .NET plugin platform for FiveM

Programming Languages

C#
18002 projects
HTML
75241 projects
lua
6591 projects

Projects that are alternatives of or similar to NFive

saltychat-fivem
FiveM implementation of Salty Chat (TeamSpeak 3 based Voice Plugin)
Stars: ✭ 64 (+20.75%)
Mutual labels:  gtav, fivem
snaily-cadv4
💻 An open source Computer Aided Dispatch (CAD) for FiveM, this is a web based integration for communities who love police roleplaying and dispatching. Discord: https://discord.gg/eGnrPqEH7U
Stars: ✭ 36 (-32.08%)
Mutual labels:  gtav, fivem
fivem-appearance
👀 A flexible player customization script for FiveM.
Stars: ✭ 94 (+77.36%)
Mutual labels:  gtav, fivem
Fivem
The source code for the Cfx.re modification frameworks, such as FiveM, RedM and LibertyM, as well as FXServer.
Stars: ✭ 2,240 (+4126.42%)
Mutual labels:  gtav, fivem
Virtualapp
Virtual Engine for Android(Support 12.0 in business version)
Stars: ✭ 8,413 (+15773.58%)
Mutual labels:  plugin-manager
Packer.nvim
A use-package inspired plugin manager for Neovim. Uses native packages, supports Luarocks dependencies, written in Lua, allows for expressive config
Stars: ✭ 418 (+688.68%)
Mutual labels:  plugin-manager
vpm
ViM Plugin Manager (like apt, npm, pacman, etc ... )
Stars: ✭ 13 (-75.47%)
Mutual labels:  plugin-manager
zinit
🌻 Flexible and fast ZSH plugin manager
Stars: ✭ 944 (+1681.13%)
Mutual labels:  plugin-manager
Sheldon
A fast, configurable, shell plugin manager
Stars: ✭ 144 (+171.7%)
Mutual labels:  plugin-manager
Plug.kak
Plugin manager for Kakoune
Stars: ✭ 119 (+124.53%)
Mutual labels:  plugin-manager
Halia
Extensible TS / JS Dependency Injection Framework
Stars: ✭ 34 (-35.85%)
Mutual labels:  plugin-manager
Ctk
A set of common support code for medical imaging, surgical navigation, and related purposes.
Stars: ✭ 498 (+839.62%)
Mutual labels:  plugin-manager
Para
Para - community plugin manager and a "swiss army knife" for Terraform/Terragrunt - just 1 tool to facilitate all your workflows.
Stars: ✭ 47 (-11.32%)
Mutual labels:  plugin-manager
Dein.vim
⚡ Dark powered Vim/Neovim plugin manager
Stars: ✭ 3,117 (+5781.13%)
Mutual labels:  plugin-manager
Zulu
Total environment manager for ZSH
Stars: ✭ 129 (+143.4%)
Mutual labels:  plugin-manager
cms
🛠️ Simple smart CMS for Nette and Vue.js
Stars: ✭ 12 (-77.36%)
Mutual labels:  plugin-manager
Peru
a generic package manager, for including other people's code in your projects
Stars: ✭ 913 (+1622.64%)
Mutual labels:  plugin-manager
Zsh Snap
⚡️ Znap! A fast & light-weight plugin manager & Git repo manager for Zsh.
Stars: ✭ 98 (+84.91%)
Mutual labels:  plugin-manager
Antigen
The plugin manager for zsh.
Stars: ✭ 6,843 (+12811.32%)
Mutual labels:  plugin-manager
Minpac
A minimal package manager for Vim 8 (and Neovim)
Stars: ✭ 693 (+1207.55%)
Mutual labels:  plugin-manager

NFive

NFive Logo

License Discord Build Status Release Version

NFive is a complete plugin framework for GTAV FiveM servers built entirely in managed C#. This project aims to replace existing FiveM server resources with a single managed framework to build upon.

On its own NFive provides no extra game mechanics or functionality, all extra features are introduced via plugins.

Currently a work in progress

This project is still subject to breaking changes at anytime, use at your own risk!

Usage

It is strongly recommended that you use NFive Package Manager (nfpm) to install and manage NFive.

See the NFive Getting Started documentation for more information.

Quick Start

  1. Download nfpm and place it in an empty directory.

  2. Run nfpm setup . and answer the prompts to automatically download and install a FiveM server and NFive into the current directory.

  3. Install the plugins you want to use on your server with nfpm install <plugin>, see nfpm search and the NFive plugin hub for available plugins.

  4. Run nfpm start to boot the server and try connecting to localhost with your FiveM client.

    See the NFive Database Setup documentation for how to correctly configure the your MySQL server.

Development

Building NFive will require Visual Studio 2017. 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 folder.

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

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

  3. Edit your server.cfg file to include the following line below your existing configuration:

    start nfive
  4. Edit config\database.yml with your database connection information as needed.

Note: For full Unicode support you will need to manually preconfigure your MySQL server's default character set. For MySQL/MariaDB add --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_520_ci to the server arguments before the database is created. See the documentation for details.

Migrations

Its strongly recommended you use nfpm migrate for automated migrations.

Manual

  1. Drop the existing database.

  2. Open the Package Manager Console in Visual Studio: View > Other Windows > Package Manager Console

  3. Run following command with your database connection information:

    Add-Migration -Name Init -Force -ProjectName Server -ConnectionString "Host=db;Port=3306;Database=fivem;User Id=root;Password=password;CharSet=utf8mb4;SSL Mode=None" -ConnectionProviderName MySql.Data.MySqlClient
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].