Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 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. # These resources will start by default.
  7. start mapmanager
  8. start chat
  9. start spawnmanager
  10. start sessionmanager
  11. start fivem
  12. start hardcap
  13. start rconlog
  14. start scoreboard
  15. start playernames
  16.  
  17. # Set connection MYSQL-async
  18. set mysql_connection_string "server=localhost;database=essentialmode;userid=root;"
  19.  
  20. # Disable Couchdb from essentialmode
  21. set es_enableCustomData 1
  22.  
  23. # Mysql/Base
  24. start mysql-async
  25.  
  26. #Fix Errors
  27. restart sessionmanager
  28.  
  29. # Give Essentialmode access to commands
  30.  
  31. add_ace resource.essentialmode command.sets allow
  32. add_ace resource.essentialmode command.add_principal allow
  33. add_ace resource.essentialmode command.add_ace allow
  34.  
  35. # ESX Core
  36. start essentialmode
  37. start es_ui
  38. start async
  39. start esplugin_mysql
  40. start es_admin2
  41. start es_extended
  42.  
  43. # ESX Base
  44. start instance
  45. start cron
  46. start skinchanger
  47. start esx_skin
  48. start esx_menu_default
  49. start esx_menu_list
  50. start esx_menu_dialog
  51. start esx_phone
  52. start esx_addonaccount
  53. start esx_addoninventory
  54. start esx_datastore
  55. start esx_society
  56. start esx_service
  57. start esx_billing
  58. start esx_license
  59. start esx_identity
  60. start esx_kashacters
  61.  
  62. # ESX Jobs
  63. start esx_jobs
  64. start esx_joblisting
  65. start esx_taxijob
  66. start esx_mechanicjob
  67. start esx_policejob
  68. start esx_property
  69. start esx_realestateagentjob
  70. start esx_bankerjob
  71. start esx_ambulancejob
  72. start esx_vehicleshop
  73.  
  74. # Other ESX scripts
  75. start es_camera
  76. start esx_status
  77. start esx_basicneeds
  78. start esx_optionalneeds
  79. start esx_shops
  80. start esx_clotheshop
  81. start esx_accessories
  82. start esx_barbershop
  83. start esx_boat
  84. start esx_lscustom
  85. start esx_weaponshop
  86. start esx_holdup
  87. start esx_drugs
  88. start esx_cruisecontrol
  89. start esx_animations
  90. start esx_garage
  91. start esx_rpchat
  92. start esx_sit
  93. start esx_voice
  94. start esx_atm
  95. start esx_dmvschool
  96.  
  97.  
  98.  
  99.  
  100. # This allows players to use scripthook based plugins such as lambda menu.
  101. # Set this to 0 to disallow scripthook.
  102. sv_scriptHookAllowed 1
  103.  
  104. # Uncomment this to enable RCON. Make sure to change the password.
  105. #rcon_password changeme
  106.  
  107. # A comma-separated list of tags for your server.
  108. # For example:
  109. # - sets tags "drifting, cars, racing"
  110. # Or:
  111. # - sets tags "roleplay, military, tanks"
  112. sets tags "default"
  113.  
  114. # Set an optional server info and connecting banner image url.
  115. # Size doesn't matter, any banner sized image will be fine.
  116. #sets banner_detail "http://url.to/image.png"
  117. #sets banner_connecting "http://url.to/image.png"
  118.  
  119. # Set your server's hostname
  120. sv_hostname "SoupBowl RP"
  121.  
  122. # Nested configs!
  123. #exec server_internal.cfg
  124.  
  125. # Loading a server icon (96x96 PNG file)
  126. #load_server_icon myLogo.png
  127.  
  128. # convars which can be used in scripts
  129. set temp_convar "hey world!"
  130.  
  131. # Uncomment this line if you do not want your server to be listed in the server browser.
  132. #sv_master1 ""
  133.  
  134. # Want to only allow players authenticated with a third-party provider like Steam?
  135. # Don't forget Social Club is a third party provider too!
  136. #sv_authMaxVariance 1
  137. #sv_authMinTrust 5
  138.  
  139. # Add system admins
  140. add_ace group.admin command allow # allow all commands
  141. add_ace group.admin command.quit deny # but don't allow quit
  142. add_principal identifier.steam:76561198088683199 group.admin # add the admin to the group
  143.  
  144. # Hide player endpoints in external log output.
  145. sv_endpointprivacy true
  146.  
  147. # Server player slot limit (must be between 1 and 32)
  148. sv_maxclients 32
  149.  
  150. # License key for your server (https://keymaster.fivem.net)
  151. sv_licenseKey "dv2e68w5jvcawfujku7trppzhba9k3t1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement