· 6 years ago · Sep 30, 2019, 03:56 PM
1endpoint_add_tcp "0.0.0.0:30120"
2endpoint_add_udp "0.0.0.0:30120"
3
4set database_driver "mysql-async"
5set mysql_connection_string "server=127.0.0.1;database=essentialmode;userid=root;password=YourPasswordHere;"
6set es_enableCustomData 1
7
8# You probably don't want to change these!
9# Only change them if you're using a server with multiple network interfaces.
10exec permissions.cfg
11endpoint_add_tcp "0.0.0.0:30111"
12endpoint_add_udp "0.0.0.0:30111"
13
14
15# These resources will start by default.
16
17### ESX ###
18set mysql_connection_string "server=localhost;database=fivem;userid=root"
19start mysql-async
20start essentialmode
21start esplugin_mysql
22start mysql
23
24start es_extended
25start esx_datastore
26start esx_society
27start esx_policejob
28
29start esx_menu_default
30start esx_menu_list
31start esx_menu_dialog
32
33### MAIN RESOURCES ###
34start mapmanager
35start chat
36start spawnmanager
37start sessionmanager
38start fivem
39start hardcap
40start rconlog
41start playernames
42
43### EUP ###
44start eup-ui
45start eup-stream
46start NativeUI
47
48### ESSENTIALS ###
49start lux_vehcontrol
50start z-loadscreen-master
51start LSPDFROnline
52start dl
53start interactSound
54start openinteriors
55LSPD_1
56start fuel
57start emotes
58start deleteveh
59start policegarage
60
61
62# Steam Web API key, if you want to use Steam authentication (https://steamcommunity.com/dev/apikey)
63# -> replace "" with the key
64set steam_webApiKey "481FCD04B80E3CA92715CA17949FB13E"
65
66# This allows players to use scripthook based plugins such as lambda menu.
67# Set this to 0 to disallow scripthook.
68sv_scriptHookAllowed 0
69
70# Uncomment this to enable RCON. Make sure to change the password.
71rcon_password Lyf3P0intR0l3pl4yRCONAccess2019
72
73# A comma-separated list of tags for your server.
74# For example:
75# - sets tags "drifting, cars, racing"
76# Or:
77# - sets tags "roleplay, military, tanks"
78sets tags "default"
79
80# Set an optional server info and connecting banner image url.
81# Size doesn't matter, any banner sized image will be fine.
82#sets banner_detail "http://url.to/image.png"
83#sets banner_connecting "http://url.to/image.png"
84
85# Set your server's hostname
86sv_hostname "YOUR SERVER NAME"
87
88# Nested configs!
89#exec server_internal.cfg
90
91# Loading a server icon (96x96 PNG file)
92# load_server_icon servericon.png
93
94# convars which can be used in scripts
95set temp_convar "hey world!"
96
97# Uncomment this line if you do not want your server to be listed in the server browser.
98#sv_master1 ""
99
100# Want to only allow players authenticated with a third-party provider like Steam?
101# Don't forget Social Club is a third party provider too!
102#sv_authMaxVariance 1
103#sv_authMinTrust 5
104
105# Add system admins
106add_ace group.admin command allow # allow all commands
107add_ace group.admin command.quit deny # but don't allow quit
108add_principal identifier.steam:1100001321846b5 group.admin # add the admin to the group
109
110# Hide player endpoints in external log output.
111sv_endpointprivacy true
112
113# Server player slot limit (must be between 1 and 32)
114sv_maxclients 32
115
116# License key for your server (https://keymaster.fivem.net)
117sv_licenseKey "YOUR KEY"