Advertisement
Guest User

Untitled

a guest
Dec 4th, 2017
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.58 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. set es_enableCustomData 1
  4. set mysql_connection_string "server=127.0.0.01;database=essentialmode;userid=root;"
  5. endpoint_add_tcp "158.69.246.31:30121"
  6. endpoint_add_udp "158.69.246.31:30121"
  7.  
  8. start mapmanager
  9. start chat
  10. start spawnmanager
  11. start sessionmanager
  12. start fivem
  13. start hardcap
  14. start rconlog
  15. start scoreboard
  16. start fivem-map-skater
  17. start mysql-async
  18. start essentialmode
  19. start esplugin_mysql
  20. start es_admin2
  21. start police
  22. start vSync
  23.  
  24.  
  25. start Captain14_LSPD
  26. start Captain14_FBI
  27. start Captain14_Sheriff
  28. start rag
  29. start wk_wrs
  30. start sfjrp_bcsopack
  31. start RadarWhileDriving
  32. start civcars
  33. start vehiclehealth
  34. start crouch
  35. start ads
  36. start dispatchsystem
  37.  
  38. start disclaimer
  39. start idoverhead
  40. start bob74_ipl
  41. start dispatchsystem
  42. start ems
  43. start hwp
  44.  
  45. start simple-loading
  46. start vannouncer
  47. start disclaimer
  48.  
  49. start wk_actionmenu
  50. start map
  51.  
  52. start basic
  53. start jail
  54. start things
  55. start frfuel
  56. start carhud
  57.  
  58. start guns
  59. start emote
  60.  
  61. start gruppe6pack
  62. start ped
  63. start mellotrainer
  64. start mods
  65. start crosshair
  66. start utaxi
  67. start heli
  68.  
  69. start modelblacklist
  70. start coloredhud
  71. start pv-cruisecontrol
  72.  
  73.  
  74. sv_scriptHookAllowed 0
  75.  
  76. # change this
  77. rcon_password
  78.  
  79. sv_hostname "CityRealism | Sandy Shores / Grapeseed | Public EMS | Trainer | SeriousRP"
  80.  
  81. # nested configs!
  82. #exec server_internal.cfg
  83.  
  84. # loading a server icon (96x96 PNG file)
  85. load_server_icon logo.png
  86.  
  87. # convars for use from script
  88. set temp_convar "hey world!"
  89.  
  90. # disable announcing? clear out the master by uncommenting this
  91. #sv_master1 ""
  92.  
  93. # want to only allow players authenticated with a third-party provider like Steam?
  94. #sv_authMaxVariance 1
  95. #sv_authMinTrust 5
  96.  
  97. # add system admins
  98. add_ace group.admin command allow # allow all commands
  99. add_ace group.admin command.quit deny # but don't allow quit
  100. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  101.  
  102. # hide player endpoints in external log output
  103. #sv_endpointprivacy true
  104.  
  105. # server slots limit (default to 30)
  106. sv_maxclients 30
  107.  
  108. add_ace resource.essentialmode command.add_ace allow
  109. add_ace resource.essentialmode command.add_principal allow
  110.  
  111. ## Copy the contents of this file and place them inside your server.cfg file before you load the resource.
  112.  
  113. set vb_enable_pvp true #Allow PVP?
  114. set vb_disable_wanted_level true #Disable wanted level for everyone.
  115. set vb_disable_emergency_services true #Stop NPC police, ambulance and fire trucks from responding to events. (Does not disable wanted level).
  116. set vb_force_god_mode_enabled false #Should godmode be enabled for everyone, no matter what? If true, you might as well set 'enablePVP' to false to improve performance.
  117. set vb_enable_welcome_message true #Should players who join the server receive a welcome message?
  118. set vb_make_welcome_message_global false #Set to true if you want everyone to see the message, leave at false to only send the message to the new player.
  119. set vb_welcome_message "Hello {player}, welcome to the server!" #The welcome message sent to joining players. (player) will be replaced with the player name.
  120. set vb_enable_whitelist false #Should the whitelist be enabled?
  121. set vb_whitelist_kick_message "Sorry, you are not whitelisted!" #Custom kick message for when the player is not whitelisted.
  122. set vb_whitelist "steam:110000105959047;license:0546489720234464684;ip:127.0.0.1" #IP's work, but are not recommended for a secure whitelist. Split every license using a semicolon.
  123. set vb_enable_crowd_control true #Setting this to true will most likely cause conflicts with ACL!!!!
  124. set vb_enable_traffic_control true #Setting this to true will most likely cause conflicts with ACL!!!!
  125. set vb_crowd_density 0.4 #Valid numbers are from 0.0 to 1.0
  126. set vb_traffic_density 0.4 #Valid numbers are from 0.0 to 1.0
  127. set vb_enable_unlimited_stamina true #Enable unlimited stamina? recommended to keep this true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement