Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. # you probably don't want to change these!
  2. # only change them if you're using a server with multiple network interfaces
  3. endpoint_add_tcp "0.0.0.0:30120"
  4. endpoint_add_udp "0.0.0.0:30120"
  5.  
  6. start mapmanager
  7. start chat
  8. start spawnmanager
  9. start sessionmanager
  10. start fivem
  11. start hardcap
  12. start rconlog
  13. start scoreboard
  14. ### hud ###
  15. start watermark
  16. ### cars ###
  17. start teslax
  18.  
  19. sv_scriptHookAllowed 1
  20.  
  21. # change this
  22. #rcon_password password
  23.  
  24. sv_hostname "test"
  25.  
  26. # nested configs!
  27. #exec server_internal.cfg
  28.  
  29. # loading a server icon (96x96 PNG file)
  30. #load_server_icon myLogo.png
  31.  
  32. # convars for use from script
  33. set temp_convar "hey world!"
  34.  
  35. # disable announcing? clear out the master by uncommenting this
  36. #sv_master1 ""
  37.  
  38. # want to only allow players authenticated with a third-party provider like Steam?
  39. #sv_authMaxVariance 1
  40. #sv_authMinTrust 5
  41.  
  42. # add system admins
  43. add_ace group.admin command allow # allow all commands
  44. add_ace group.admin command.quit deny # but don't allow quit
  45. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  46.  
  47. # hide player endpoints in external log output
  48. sv_endpointprivacy true
  49.  
  50. #server slots limit (default to 24)
  51. #sv_maxclients 8
  52. sv_licensekey mgcp4fzzpfmc0mdnvkwdj4yzeud*****
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement