Advertisement
Guest User

Untitled

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