Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 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.01;database=essentialmode;userid=root;"
  8.  
  9. #required
  10. start mapmanager
  11. start chat
  12. start spawnmanager
  13. start fivem
  14. start hardcap
  15. start rconlog
  16. start scoreboard
  17. start mysql-async
  18.  
  19. #essentimode (used for /drag)
  20. start esplugin_mysql
  21. start essentialmode
  22. start drag
  23.  
  24. #vrp
  25. start vrp
  26. start vrp_mysql
  27. start vrp_basic_mission
  28. start vrp_barbershop
  29. start vrp_carwash
  30. start vrp_loadfreeze
  31. start vrp_lscustoms
  32. start vRP_AdvancedFuel
  33. start vrp_job_display
  34. start vrp_court
  35. start vrp_bankrobbery
  36. start vrp_basic_menu
  37. start railhouse
  38. start online
  39. start bob74_ipl
  40. start pvp
  41. start banking
  42.  
  43. #custom
  44. start blips
  45. start bblips
  46. start club_B
  47. start club_R
  48. start racetrack
  49. start rolesFX
  50. start map
  51. start Vhealth
  52. start VK_interiors
  53. start ThereMap
  54. start indicators
  55. start pNotify
  56.  
  57. #standalone jobs
  58. start TruckerJob
  59.  
  60. #condensed scripts (non-vrp)
  61. start CustomScripts
  62.  
  63. #police vehicles
  64. start bcso
  65. start Captain14_LSPD
  66. start Captain14_Sheriff
  67. start DodgeCharger2014
  68. start FordExplorer
  69. start hwycars
  70. start pol718
  71. start polf430
  72. start policeb
  73. start polmav
  74. start riot
  75.  
  76. #police skins
  77. start detective
  78. start ems
  79. start hway
  80. start police
  81. start sheriff
  82. start sheriffd
  83. start swat
  84.  
  85. #job vehicles
  86. start repairtruck
  87.  
  88. #custom cars
  89. start Audi_C7_RS6
  90. start Audi_S5
  91. start Lexus_RC350
  92. start r8ppi
  93. start c10custom
  94. start chantom
  95. start skyline
  96. start subaruimpreza
  97. start f4rr
  98. start firebird
  99. start ford
  100. start GT
  101. start moto
  102. start moto2
  103. start moto3
  104. start evo
  105. start truck
  106.  
  107. #buildings
  108. start Ped
  109.  
  110. sv_scriptHookAllowed 0
  111.  
  112. # change this
  113. #rcon_password ChangeMe
  114.  
  115. sv_hostname "justice nation Roleplay | Cops,Fire&Rescue,Civs | Justicenationrp.com"
  116.  
  117. # nested configs!
  118. #exec server_internal.cfg
  119.  
  120. # loading a server icon (96x96 PNG file)
  121. load_server_icon logo.png
  122.  
  123. # convars for use from script
  124. set temp_convar "hey world!"
  125.  
  126. # disable announcing? clear out the master by uncommenting this
  127. #sv_master1 ""
  128.  
  129. # want to only allow players authenticated with a third-party provider like Steam?
  130. #sv_authMaxVariance 1
  131. #sv_authMinTrust 5
  132.  
  133. # add system admins
  134. add_ace group.admin command allow # allow all commands
  135. add_ace group.admin command.quit deny # but don't allow quit
  136. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  137.  
  138. # hide player endpoints in external log output
  139. #sv_endpointprivacy true
  140.  
  141. # server slots limit (default to 30)
  142. sv_maxclients 32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement