Advertisement
Guest User

Untitled

a guest
Jan 6th, 2020
543
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.44 KB | None | 0 0
  1. # Only change the IP if you're using a server with multiple network interfaces, otherwise change the port only.
  2. endpoint_add_tcp "0.0.0.0:30120"
  3. endpoint_add_udp "0.0.0.0:30120"
  4.  
  5. ensure spawnmanager
  6. ensure mapmanager
  7. ensure 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"
  14. sets 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"
  18. sets locale "en-US"
  19.  
  20. # Set your server's hostname
  21. sv_hostname "Test Server"
  22.  
  23. # Add system admins
  24. add_ace group.admin command allow # allow all commands
  25. add_ace group.admin command.quit deny # but don't allow quit
  26. add_principal identifier.fivem:1 group.admin # add the admin to the group
  27.  
  28. # Hide player endpoints in external log output.
  29. sv_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.
  33. sv_master1 ""
  34.  
  35. # Server player slot limit (must be between 1 and 32, unless using OneSync)
  36. sv_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
  40. set steam_webApiKey "REMOVED MY KEY HERE"
  41.  
  42. # License key for your server (https://keymaster.fivem.net)
  43. sv_licenseKey "REMOVED MY KEY HERE"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement