mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 01:08:54 +00:00
chore: Include resource load order in server.cfg
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<h1 align='center'>ESX Legacy</a></h1><p align='center'><b><a href='https://discord.gg/cNx6HF9P5J'>Development Discord</a> - <a href='https://esx-framework.org/esx'>Website</a> - <a href='https://discord.gg/J6VqFPwvVp'>Support Discord</a></b></h5>
|
||||
<h1 align='center'>ESX Legacy</a></h1><p align='center'><b><a href='https://discord.gg/cNx6HF9P5J'>Development Discord</a> - <a href='https://esx-framework.org/'>Website</a> - <a href='https://discord.gg/J6VqFPwvVp'>Support Discord</a></b></h5>
|
||||
|
||||
|
||||
##### 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:
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
> 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
|
||||
> esx_ambulancejob: 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](https://github.com/esx-community/) or [Cfx.re Releases board](https://forum.cfx.re/tag/esx) for more.
|
||||
|
||||
@@ -83,9 +83,7 @@ Many more resources are included in this repository, or you can browse the [ESX
|
||||
|
||||
### 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.
|
||||
- [ESX Forum](https://forum.esx-framework.org/)
|
||||
- [ESX Documentation](https://wiki.esx-framework.org/)
|
||||
- [ESX Development Discord](https://discord.me/esx)
|
||||
- [ESX Documentation](https://esx-framework.github.io/es_extended/)
|
||||
- [FiveM Native Reference](https://runtime.fivem.net/doc/reference.html)
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<h1 align='center'>ESX Legacy</a></h1><p align='center'><b><a href='https://discord.gg/cNx6HF9P5J'>Development Discord</a> - <a href='https://esx-framework.org/esx'>Website</a> - <a href='https://discord.gg/J6VqFPwvVp'>Support Discord</a></b></h5>
|
||||
<h1 align='center'>ESX Legacy</a></h1><p align='center'><b><a href='https://discord.gg/cNx6HF9P5J'>Development Discord</a> - <a href='https://esx-framework.org/'>Website</a> - <a href='https://discord.gg/J6VqFPwvVp'>Support Discord</a></b></h5>
|
||||
|
||||
|
||||
##### 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:
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
> 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
|
||||
> esx_ambulancejob: 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](https://github.com/esx-community/) or [Cfx.re Releases board](https://forum.cfx.re/tag/esx) for more.
|
||||
|
||||
@@ -83,9 +83,7 @@ Many more resources are included in this repository, or you can browse the [ESX
|
||||
|
||||
### 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.
|
||||
- [ESX Forum](https://forum.esx-framework.org/)
|
||||
- [ESX Documentation](https://wiki.esx-framework.org/)
|
||||
- [ESX Development Discord](https://discord.me/esx)
|
||||
- [ESX Documentation](https://esx-framework.github.io/es_extended/)
|
||||
- [FiveM Native Reference](https://runtime.fivem.net/doc/reference.html)
|
||||
|
||||
|
||||
|
||||
+45
-13
@@ -15,16 +15,17 @@ endpoint_add_udp "0.0.0.0:30120"
|
||||
|
||||
|
||||
sv_hostname "Unconfigured ESX Server"
|
||||
set steam_webApiKey "none"
|
||||
set steam_webApiKey ""
|
||||
sv_licenseKey ""
|
||||
sv_maxclients 10 # Allow access to features usually locked behind a FiveM patreon key
|
||||
sv_maxclients 10 # Allow access to features usually locked behind a FiveM patreon key
|
||||
|
||||
sets sv_projectName "ESX Legacy"
|
||||
sets sv_projectDesc ""
|
||||
sets locale "root-AQ"
|
||||
sets tags "default, esx"
|
||||
sv_scriptHookAllowed 0
|
||||
|
||||
set onesync legacy # Not recommended to use Infinity with ESX
|
||||
set onesync legacy # Infinity is not recommended for ESX
|
||||
set mysql_connection_string "mysql://user:password@localhost/es_extended?waitForConnections=true&charset=utf8mb4"
|
||||
|
||||
|
||||
@@ -54,13 +55,44 @@ ensure esx_identity
|
||||
ensure esx_skin
|
||||
|
||||
## ESX Addons
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#ensure esx_multicharacter # es_extended requires Config.Multichar = true
|
||||
ensure instance
|
||||
ensure esx_rpchat
|
||||
ensure esx_phone
|
||||
ensure esx_voice
|
||||
ensure esx_sit
|
||||
ensure esx_animations
|
||||
ensure esx_addonaccount
|
||||
ensure esx_addoninventory
|
||||
ensure esx_datastore
|
||||
ensure esx_property
|
||||
ensure esx_garage
|
||||
ensure esx_society
|
||||
ensure esx_service
|
||||
ensure esx_billing
|
||||
ensure esx_license
|
||||
ensure esx_dmvschool
|
||||
ensure esx_status
|
||||
ensure esx_basicneeds
|
||||
ensure esx_optionalneeds
|
||||
ensure esx_shops
|
||||
ensure esx_weaponshop
|
||||
ensure esx_clotheshop
|
||||
ensure esx_barbershop
|
||||
ensure esx_accessories
|
||||
ensure esx_vehicleshop
|
||||
ensure esx_boat
|
||||
ensure esx_jobs
|
||||
ensure esx_joblisting
|
||||
ensure esx_cruisecontrol
|
||||
ensure esx_atm
|
||||
ensure esx_drugs
|
||||
ensure esx_holdup
|
||||
ensure esx_lscustom
|
||||
ensure esx_ambulancejob
|
||||
ensure esx_mechanicjob
|
||||
ensure esx_ambulancejob
|
||||
ensure esx_policejob
|
||||
ensure esx_bankerjob
|
||||
ensure esx_realestateagentjob
|
||||
ensure esx_taxijob
|
||||
Reference in New Issue
Block a user