Advertisement
Guest User

Untitled

a guest
Oct 6th, 2017
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 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.  
  15. sv_scriptHookAllowed 1
  16.  
  17. # change this
  18. #rcon_password yay
  19.  
  20. sv_hostname "My new FXServer!"
  21.  
  22. # nested configs!
  23. #exec server_internal.cfg
  24.  
  25. # loading a server icon (96x96 PNG file)
  26. #load_server_icon myLogo.png
  27.  
  28. # convars for use from script
  29. set temp_convar "hey world!"
  30.  
  31. # disable announcing? clear out the master by uncommenting this
  32. #sv_master1 ""
  33.  
  34. # want to only allow players authenticated with a third-party provider like Steam?
  35. #sv_authMaxVariance 1
  36. #sv_authMinTrust 5
  37.  
  38. # add system admins
  39. add_ace group.admin command allow # allow all commands
  40. add_ace group.admin command.quit deny # but don't allow quit
  41. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  42.  
  43. # hide player endpoints in external log output
  44. #sv_endpointprivacy true
  45.  
  46. # server slots limit (default to 30)
  47. sv_maxclients 32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement