Advertisement
Guest User

SERVER.CFG

a guest
May 24th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 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 "192.168.0.100:30120"
  4. endpoint_add_udp "192.168.0.100:30120"
  5.  
  6. set es_enableCustomData 1
  7. set database_driver "mysql-async"
  8. set mysql_connection_string "mysql://root:password@127.0.0.1/essentialmode"
  9.  
  10.  
  11. start mapmanager
  12. start chat
  13. start spawnmanager
  14. start sessionmanager
  15. start fivem
  16. start hardcap
  17. start rconlog
  18. start scoreboard
  19. start object-loader
  20. start object-teleports
  21.  
  22. #comandos essentialmode
  23.  
  24. add_ace resource.essentialmode command.sets allow
  25. add_ace resource.essentialmode command.add_principal allow
  26. add_ace resource.essentialmode command.add_ace allow
  27.  
  28. #novos \/
  29. start mysql-async
  30. start essentialmode
  31. start esplugin_mysql
  32.  
  33. start es_extended
  34.  
  35. start esx_menu_default
  36. start esx_menu_list
  37. start esx_menu_dialog
  38.  
  39. sv_scriptHookAllowed 1
  40.  
  41. # change this
  42. #rcon_password yay
  43.  
  44. sv_hostname "Andrade"
  45.  
  46. # nested configs!
  47. #exec server_internal.cfg
  48.  
  49. # loading a server icon (96x96 PNG file)
  50. #load_server_icon myLogo.png
  51.  
  52. # convars for use from script
  53. set temp_convar "hey world!"
  54.  
  55.  
  56. # disable announcing? clear out the master by uncommenting this
  57. #sv_master1 ""
  58.  
  59. # want to only allow players authenticated with a third-party provider like Steam?
  60. #sv_authMaxVariance 1
  61. #sv_authMinTrust 5
  62.  
  63. # add system admins
  64. add_ace group.admin command allow # allow all commands
  65. add_ace group.admin command.quit deny # but don't allow quit
  66. add_principal identifier.steam:110000103f9b4b6 group.admin # add the admin to the group
  67.  
  68. # hide player endpoints in external log output
  69. #sv_endpointprivacy true
  70.  
  71. # server slots limit (default to 24)
  72. sv_maxclients 8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement