· 6 years ago · Jan 06, 2020, 02:28 PM
1# Only change the IP if you're using a server with multiple network interfaces, otherwise change the port only.
2endpoint_add_tcp "0.0.0.0:30120"
3endpoint_add_udp "0.0.0.0:30120"
4
5ensure spawnmanager
6ensure mapmanager
7ensure basic-gamemode
8
9# A comma-separated list of tags for your server.
10# For example:
11# - sets tags "drifting, cars, racing"
12# Or:
13# - sets tags "roleplay, military, tanks"
14sets tags "default"
15
16# A valid locale identifier for your server's primary language.
17# For example "en-US", "fr-CA", "nl-NL", "de-DE", "en-GB", "pt-BR"
18sets locale "en-US"
19
20# Set your server's hostname
21sv_hostname "Test Server"
22
23# Add system admins
24add_ace group.admin command allow # allow all commands
25add_ace group.admin command.quit deny # but don't allow quit
26add_principal identifier.fivem:1 group.admin # add the admin to the group
27
28# Hide player endpoints in external log output.
29sv_endpointprivacy true
30
31# Uncomment this line if you do not want your server to be listed in the server browser.
32# Do not edit it if you *do* want your server listed.
33sv_master1 ""
34
35# Server player slot limit (must be between 1 and 32, unless using OneSync)
36sv_maxclients 32
37
38# Steam Web API key, if you want to use Steam authentication (https://steamcommunity.com/dev/apikey)
39# -> replace "" with the key
40set steam_webApiKey "REMOVED MY KEY HERE"
41
42# License key for your server (https://keymaster.fivem.net)
43sv_licenseKey "REMOVED MY KEY HERE"