Advertisement
Guest User

Untitled

a guest
May 25th, 2019
549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. set mysql_connection_string "server=127.0.0.1;database=zap393817-1;userid=development;password=ragetest1."
  2. set es_enableCustomData 1
  3.  
  4.  
  5. # Only change the IP if you're using a server with multiple network interfaces, otherwise change the port only.
  6. endpoint_add_tcp "0.0.0.0:30120"
  7. endpoint_add_udp "0.0.0.0:30120"
  8.  
  9. # These resources will start by default.
  10. ensure mapmanager
  11. ensure chat
  12. ensure spawnmanager
  13. ensure sessionmanager
  14. ensure fivem
  15. ensure hardcap
  16. ensure rconlog
  17. ensure scoreboard
  18.  
  19. #Essentials
  20. #start chat
  21. #start chat-theme-civlifechat
  22. #start esx_rpchat
  23. start es_admin2
  24. start es_camera
  25. start esplugin_mysql
  26. start mysql-async
  27. start async
  28. start essentialmode
  29. start es_extended
  30. #start fivem
  31. #start hardcap
  32. #start mapmanager
  33.  
  34. #start rconlog
  35. #start sessionmanager
  36. #start spawnmanager
  37. start title
  38. #start vSync
  39. #start vBasic
  40. #start LifeTraffic
  41. #start vMenu
  42.  
  43.  
  44. # This allows players to use scripthook-based plugins such as the legacy Lambda Menu.
  45. # Set this to 1 to allow scripthook. Do note that this does _not_ guarantee players won't be able to use external plugins.
  46. sv_scriptHookAllowed 0
  47.  
  48. # Uncomment this and set a password to enable RCON. Make sure to change the password - it should look like rcon_password "YOURPASSWORD"
  49. #rcon_password ""
  50.  
  51. # A comma-separated list of tags for your server.
  52. # For example:
  53. # - sets tags "drifting, cars, racing"
  54. # Or:
  55. # - sets tags "roleplay, military, tanks"
  56. sets tags "roleplay"
  57.  
  58. # Set an optional server info and connecting banner image url.
  59. # Size doesn't matter, any banner sized image will be fine.
  60. #sets banner_detail "https://url.to/image.png"
  61. #sets banner_connecting "https://url.to/image.png"
  62.  
  63. # Set your server's hostname
  64. sv_hostname "FXServer, but unconfigured"
  65.  
  66. # Nested configs!
  67. #exec server_internal.cfg
  68.  
  69. # Loading a server icon (96x96 PNG file)
  70. #load_server_icon myLogo.png
  71.  
  72. # convars which can be used in scripts
  73. set temp_convar "hey world!"
  74.  
  75. # Uncomment this line if you do not want your server to be listed in the server browser.
  76. # Do not edit it if you *do* want your server listed.
  77. #sv_master1 ""
  78.  
  79. # Add system admins
  80. add_ace group.admin command allow # allow all commands
  81. add_ace group.admin command.quit deny # but don't allow quit
  82. add_principal identifier.steam:110000107443d66 group.admin # add the admin to the group
  83.  
  84. # Hide player endpoints in external log output.
  85. sv_endpointprivacy true
  86.  
  87. # Server player slot limit (must be between 1 and 32, unless using OneSync)
  88. sv_maxclients 32
  89.  
  90. # License key for your server (https://keymaster.fivem.net)
  91. sv_licenseKey lycwlunsv1yylv2vm0xe5qlavdm4ab35
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement