Guest User

Untitled

a guest
Jan 10th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 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 "81.231.111.83:30120"
  4. endpoint_add_udp "81.231.111.83: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. start playernames
  15.  
  16. # Set connection MYSQL-async
  17. set mysql_connection_string "server=localhost;database=essentialmode;userid=root;"
  18.  
  19. # Disable Couchdb from essentialmode
  20. set es_enableCustomData 1
  21.  
  22. # Mysql/Base
  23. start mysql-async
  24.  
  25. #Fix Errors
  26. restart sessionmanager
  27.  
  28. # ESX/Base
  29. start essentialmode
  30. start esplugin_mysql
  31. start es_admin2
  32. start es_extended
  33.  
  34.  
  35. sv_scriptHookAllowed 1
  36.  
  37. # change this
  38. #rcon_password yay
  39.  
  40. sv_hostname "My new FXServer!"
  41.  
  42. # nested configs!
  43. #exec server_internal.cfg
  44.  
  45. # loading a server icon (96x96 PNG file)
  46. #load_server_icon myLogo.png
  47.  
  48. # convars for use from script
  49. set temp_convar "hey world!"
  50.  
  51. # disable announcing? clear out the master by uncommenting this
  52. #sv_master1 ""
  53.  
  54. # want to only allow players authenticated with a third-party provider like Steam?
  55. #sv_authMaxVariance 1
  56. #sv_authMinTrust 5
  57.  
  58. # add system admins
  59. add_ace group.admin command allow # allow all commands
  60. add_ace group.admin command.quit deny # but don't allow quit
  61. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  62.  
  63. # remove the # to hide player endpoints in external log output
  64. #sv_endpointprivacy true
  65.  
  66. # server slots limit (must be between 1 and 31)
  67. sv_maxclients 30
  68.  
  69. # license key for server (https://keymaster.fivem.net)
  70. sv_licenseKey uoisoxa4vbko0m4oitulh2m7xnzs5ngh
Add Comment
Please, Sign In to add comment