Guest User

server.cfg

a guest
Mar 13th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 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. set mysql_connection_string "server=127.0.0.1;database=essentialmode;userid=root;password=toor"
  7.  
  8. start mapmanager
  9. start chat
  10. start spawnmanager
  11. start sessionmanager
  12. start fivem
  13. start hardcap
  14. start rconlog
  15. start scoreboard
  16. start playernames
  17.  
  18. sv_scriptHookAllowed 1
  19.  
  20. # change this
  21. #rcon_password [removed]
  22.  
  23. sv_hostname "AlphaK RolePlay"
  24.  
  25. # nested configs!
  26. #exec server_internal.cfg
  27.  
  28. # loading a server icon (96x96 PNG file)
  29. load_server_icon server.png
  30.  
  31. # convars for use from script
  32. set temp_convar "hey world!"
  33.  
  34. # disable announcing? clear out the master by uncommenting this
  35. #sv_master1 ""
  36.  
  37. # want to only allow players authenticated with a third-party provider like Steam?
  38. #sv_authMaxVariance 1
  39. #sv_authMinTrust 5
  40.  
  41. # add system admins
  42. add_ace group.admin command allow # allow all commands
  43. add_ace group.admin command.quit deny # but don't allow quit
  44. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  45.  
  46. # remove the # to hide player endpoints in external log output
  47. sv_endpointprivacy true
  48.  
  49. # server slots limit (must be between 1 and 31)
  50. sv_maxclients 12
  51.  
  52. # license key for server (https://keymaster.fivem.net)
  53. sv_licenseKey [removed]
Add Comment
Please, Sign In to add comment