Skip to content

spacevx/esx_core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ESX Legacy

Developer Discord - Patreon - Support Discord

ESX is the most popular framework for creating economy-based roleplay servers on FiveM, with many official and community resources designed to utilise the tools provided here. For a taste of what's available:

esx_identity: Enables character registration defining a players name, sex, height, and date of birth

esx_society: Allows job resources to register a society, gaining employee management, society funds, and more

esx_billing: Allows members of some societies to send fines or bills to other players

esx_vehicleshop: Allow players to purchase vehicles from a dealership, or setup society support for a player-managed dealership

esx_ambulancejop: Adds a death and respawn system while allowing players to work as EMS to heal and revive others

Many more resources are included in this repository, or you can browse the ESX Community Github or Cfx.re Releases board for more.

Conflicts

  • The following resources should not be used with ESX Legacy and will prevent characters from loading
    • essentialsmode
    • basic-gamemode
    • fivem-map-skater
    • fivem-map-hipster
    • default_spawnpoint

Information

Legacy provides some necessary bug-fixes and improvements to optimise the framework before reaching the end of official support by the development team.
Most resources designed for 1.2 will have no issues with Legacy, notable exceptions are those which modify spawning/loading behaviour. There are several minor feature updates which do not impact compatibility with old resources.

Optimisation

  • Utilise compile-time jenkins hashing over the GetHashKey native
  • Update old MySQL queries to use MySQL.store to improve performance, especially during player saving
  • Several loops will now sleep when their tasks are not necessary to perform
  • Improved support when using ESX Identity to reduce events and queries during player login
  • Weapon ammo is no longer synced every time it changes, instead waiting for the player to stop shooting
  • Support for the latest weapons and components

Features

  • Integrated support for identity data
  • Integrated commands from esx_adminplus
  • All players will be saved immediately before a txAdmin scheduled restart
  • Detect if a player is new and send the result to the playerLoaded event
  • Support for players logging out when using multicharacter resources
  • Cache the players ped id and death state in ESX.PlayerData
  • Added an imports file (similar to locales.lua) for setting up events and functions in other resources
    • Before defining all manifest script files, add shared_script '@es_extended/imports.lua'
    • Automatically retrieve the ESX object, removing the need to send a callback event on both the client and server
    • Ensures current information is always returned when using ESX.PlayerData (except loadout and inventory)
  • Spawnmanager is being utilised to correctly handle player spawns
    • Potential conflicts with some third-party resources that do not expect spawnmanager
  • Added an improved function when performing xPlayer loops to prevent large server hitches
    • Using ESX.GetExtendedPlayers() instead of ESX.GetPlayers()

Fixes

  • ESX.Jobs table is populated after all jobs are setup, allowing other resources to retrieve it if needed
  • All weapons are properly removed when using the clearloadout command
For creating or updating resources refer to the updated boilerplate.

Features

  • Weight based inventory system
  • Weapons support, including support for attachments and tints
  • Supports different money accounts (defaulted with cash, bank and black money)
  • Many official resources available in our GitHub
  • Job system, with grades and clothes support
  • Supports multiple languages, most strings are localized
  • Easy to use API for developers to easily integrate ESX to their projects
  • Register your own commands easily, with argument validation, chat suggestion and using FXServer ACL

Requirements

Installation

  • Download files to the resources folder and, if desired, prepare directories for organisation (i.e. resources/[core]/es_extended)
  • Import es_extended.sql in your database
  • Import any other sql files for the resources you are using
  • Ensure all resources config files have been adjusted for your preferences
  • Configure your server.cfg with the following
set mysql_connection_string "mysql://user:password@localhost/es_extended?waitForConnections=true&charset=utf8mb4"
set onesync legacy # Infinity is not recommended unless you know how to use it

add_principal group.admin group.user
add_ace resource.es_extended command.add_ace allow
add_ace resource.es_extended command.add_principal allow
add_ace resource.es_extended command.remove_principal allow
add_ace resource.es_extended command.stop allow

# Cfx
ensure mapmanager
ensure chat
ensure spawnmanager
ensure sessionmanager

# ESX Core Framework
ensure mysql-async
ensure cron
ensure instance
ensure skinchanger
ensure es_extended
ensure esx_menu_default
ensure esx_menu_dialog
ensure esx_menu_list
ensure esx_identity
ensure esx_skin

Information

ESX was initially developed by Gizz back in 2017 for his friend as the were creating an FiveM server and there wasn't any economy roleplaying frameworks available. The original code was written within a week or two and later open sourced, it has ever since been improved and parts been rewritten to further improve on it.

Reborn

ESX Reborn is the name for the framework being actively developed by the team, with many existing features being rewritten and improved upon. It is currently possible to create a server using ESX Reborn, however the project is still missing many features and should not be used unless you are a developer looking to contribute in some way.

Legal

License

es_extended - ESX framework for FiveM

Copyright (C) 2015-2021 Jérémie N'gadi

This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.

This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details.

You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/.

About

Official Repo For core resources for esx-legacy

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 90.8%
  • JavaScript 5.3%
  • CSS 2.4%
  • HTML 1.5%