Advertisement
bibi8667

Untitled

Feb 4th, 2019
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 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 es_enableCustomData 1
  7. set mysql_connection_string "server=127.0.0.1;database=essentialmode;userid=root;password=ea6af067f3"
  8.  
  9. # These resources will start by default.
  10. start mapmanager
  11. start chat
  12. start spawnmanager
  13. start sessionmanager
  14. start fivem
  15. start hardcap
  16. start rconlog
  17. start scoreboard
  18. start playernames
  19.  
  20. # Starting Mysql-async
  21. start mysql-async
  22. start essentialmode
  23. start esplugin_mysql
  24. start es_admin2
  25.  
  26. # This allows players to use scripthook based plugins such as lambda menu.
  27. # Set this to 0 to disallow scripthook.
  28. sv_scriptHookAllowed 1
  29.  
  30. # Uncomment this to enable RCON. Make sure to change the password.
  31. #rcon_password changeme
  32.  
  33. # A comma-separated list of tags for your server.
  34. # For example:
  35. # - sets tags "drifting, cars, racing"
  36. # Or:
  37. # - sets tags "roleplay, military, tanks"
  38. sets tags "default"
  39.  
  40. # Set an optional server info and connecting banner image url.
  41. # Size doesn't matter, any banner sized image will be fine.
  42. #sets banner_detail "http://url.to/image.png"
  43. #sets banner_connecting "http://url.to/image.png"
  44.  
  45. # Set your server's hostname
  46. sv_hostname "Fabien TEST"
  47.  
  48. # Nested configs!
  49. #exec server_internal.cfg
  50.  
  51. # Loading a server icon (96x96 PNG file)
  52. #load_server_icon myLogo.png
  53.  
  54. # convars which can be used in scripts
  55. set temp_convar "hey world!"
  56.  
  57. # Uncomment this line if you do not want your server to be listed in the server browser.
  58. #sv_master1 ""
  59.  
  60. # Want to only allow players authenticated with a third-party provider like Steam?
  61. # Don't forget Social Club is a third party provider too!
  62. #sv_authMaxVariance 1
  63. #sv_authMinTrust 5
  64.  
  65. # Add system admins
  66. add_ace group.admin command allow # allow all commands
  67. add_ace group.admin command.quit deny # but don't allow quit
  68. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  69.  
  70. # Hide player endpoints in external log output.
  71. sv_endpointprivacy true
  72.  
  73. # Server player slot limit (must be between 1 and 32)
  74. sv_maxclients 32
  75.  
  76. # License key for your server (https://keymaster.fivem.net)
  77. sv_licenseKey *********************
  78.  
  79. # Evite le bug "couldn't load resource manager"
  80. restart sessionmanager
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement