Guest User

server cfg

a guest
Mar 5th, 2018
132
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 "192.168.1.121:30120"
  4. endpoint_add_udp "192.168.1.121:30120"
  5.  
  6. set es_enableCustomData 1
  7. set mysql_connection_string "server=127.0.0.1;database=esmod;userid=root;pass=******;"
  8.  
  9. #base fivem
  10. start mapmanager
  11. start chat
  12. start spawnmanager
  13. start scoreboard
  14. start sessionmanager
  15. start fivem
  16. start hardcap
  17. start rconlog
  18. start baseevents
  19. start mysql-async
  20. start essentialmode
  21. start esplugin_mysql
  22.  
  23. #base esx
  24. start cron
  25. start instance
  26. start pNotify
  27. start baseevents
  28. start es_extended
  29. start es_admin2
  30. start esx_datastore
  31. start esx_basicneeds
  32. start esx_optionalneeds
  33. start esx_addonaccount
  34. start esx_addoninventory
  35. start esx_user_data
  36. start esx_menu_default
  37. start esx_menu_list
  38. start esx_menu_dialog
  39. start esx_identity
  40. start bob74
  41.  
  42. #Userneeded scripts
  43. start llscreen
  44. start skinchanger
  45. start esx_skin
  46. start esx_accessories
  47. start esx_society
  48. start esx_rpchat
  49. start esx_boilerplate
  50. start esx_status
  51. start esx_service
  52. start esx_eden_garage
  53. start esx_property
  54. start esx_license
  55. start esx_atm
  56. start esx_voice
  57. start esx_phone
  58. start esx_billing
  59. start esx_holdup
  60. start es_bankrob
  61.  
  62. #Custom scripts
  63. start CustomScripts
  64. start dontdropweapon
  65. start dbjailer
  66. start disabledispatch
  67. start PoliceVehiclesWeaponDeleter
  68. start esx_moneywash
  69.  
  70.  
  71. sv_scriptHookAllowed 0
  72.  
  73. # change this
  74. rcon_password SRV
  75.  
  76. sv_hostname "[INTERNATIONAL] GamersINC.org ~ SERIOUS RP ~ Semi whitlisted ~ Discord: mFEKPFu"
  77.  
  78. # nested configs!
  79. #exec server_internal.cfg
  80.  
  81. # loading a server icon (96x96 PNG file)
  82. load_server_icon logo.png
  83.  
  84. # convars for use from script
  85. set temp_convar "hey world!"
  86.  
  87. # disable announcing? clear out the master by uncommenting this
  88. #sv_master1 ""
  89.  
  90. # want to only allow players authenticated with a third-party provider like Steam?
  91. sv_authMaxVariance 1
  92. sv_authMinTrust 5
  93.  
  94. # add system admins
  95. add_ace group.admin command allow # allow all commands
  96. add_ace group.admin command.quit deny # but don't allow quit
  97. add_principal identifier.steam:1100001025fbc00 group.admin # add the admin to the group
  98. add_principal identifier.steam:1100001036814ab group.admin # add the admin to the group
  99.  
  100. # hide player endpoints in external log output
  101. sv_endpointprivacy true
  102.  
  103. # server slots limit (default to 30)
  104. sv_maxclients 32
  105.  
  106. # Get a key from https://keymaster.fivem.net
  107. set sv_licensekey "MYKEYHERE"
Add Comment
Please, Sign In to add comment