Guest User

vkinteriors

a guest
Dec 25th, 2017
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.73 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. ## Copy the contents of this file and place them inside your server.cfg file before you load the resource.
  7.  
  8. set vb_enable_pvp true #Allow PVP?
  9. set vb_disable_wanted_level true #Disable wanted level for everyone.
  10. set vb_disable_emergency_services true #Stop NPC police, ambulance and fire trucks from responding to events. (Does not disable wanted level).
  11. 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.
  12. set vb_enable_welcome_message true #Should players who join the server receive a welcome message?
  13. 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.
  14. set vb_welcome_message "Hello {player}, welcome to the server! To become PD FD or EMS you must apply. Request Application in Chat." #The welcome message sent to joining players. (player) will be replaced with the player name.
  15. set vb_enable_whitelist false #Should the whitelist be enabled?
  16. set vb_whitelist_kick_message "Sorry, you are not whitelisted!" #Custom kick message for when the player is not whitelisted.
  17. set vb_whitelist "steam:;license:;ip:" #IP's work, but are not recommended for a secure whitelist. Split every license using a semicolon.
  18. set vb_enable_crowd_control false #Setting this to true will most likely cause conflicts with ACL!!!!
  19. set vb_enable_traffic_control false #Setting this to true will most likely cause conflicts with ACL!!!!
  20. set vb_crowd_density 1.0 #Valid numbers are from 0.0 to 1.0
  21. set vb_traffic_density 1.0 #Valid numbers are from 0.0 to 1.0
  22. set vb_enable_unlimited_stamina true #Enable unlimited stamina? recommended to keep this true
  23.  
  24. start mapmanager
  25. start chat
  26. start spawnmanager
  27. start sessionmanager
  28. start fivem
  29. start hardcap
  30. start rconlog
  31. start scoreboard
  32. #start playernames
  33. start EasyAdmin
  34. start essentialmode
  35. start es_admin2
  36. start 2015polstang
  37. start ads
  38. start bob74_ipl
  39. start Captain14_FBI
  40. start Captain14_LSPD
  41. start Captain14_Sheriff
  42. start carhud
  43. start ChatShowIDFX
  44. start commands
  45. start cuff-handsup-master
  46. start deleteveh
  47. start disclaimer
  48. start drag
  49. start elm-button-press
  50. start FCV
  51. start frfuel
  52. start heli
  53. start hood-trunk
  54. start Hospital
  55. start HP
  56. start Jailer
  57. start KeepMyDoorOpen
  58. start LeaveEngineRunning
  59. start loadingscreen
  60. start loadoutmenu
  61. start lux_vehcontrol
  62. start mellotrainer
  63. start mods
  64. start peds
  65. start policeb
  66. start polmav
  67. start port-police-pack
  68. start pv-tow
  69. start rolesFX
  70. start RPDeath
  71. start SCRIPT_FIRE
  72. start security-pack
  73. start simpleinteractions
  74. start streetLabel
  75. start swat
  76. start ToastysCruiseControl
  77. start towtruck
  78. start vBasic23
  79. start VK_main
  80. start VK_interiors
  81. start vSync
  82. start warmenu-master
  83. start wk_wrs
  84. restart sessionmanager
  85.  
  86.  
  87. sv_scriptHookAllowed 0
  88.  
  89. # change this
  90. rcon_password
  91.  
  92. sv_hostname
  93.  
  94. # nested configs!
  95. #exec server_internal.cfg
  96.  
  97. # loading a server icon (96x96 PNG file)
  98. load_server_icon myLogo.png
  99.  
  100. # convars for use from script
  101. set ea_useQueue "false"
  102. set ea_MenuButton "243"
  103. set ea_alwaysShowButtons "false"
  104.  
  105. # disable announcing? clear out the master by uncommenting this
  106. #sv_master1 ""
  107.  
  108. # want to only allow players authenticated with a third-party provider like Steam?
  109. sv_authMaxVariance 1
  110. sv_authMinTrust 5
  111.  
  112. # add system admins
  113. add_ace group.admin command allow # allow all commands
  114. add_ace group.admin command.quit deny # but don't allow quit
  115. add_principal identifier.steam: group.admin # add the admin to the group
  116. add_ace group.admin command allow
  117. add_principal identifier.steam: group.admin
  118. add_principal identifier.steam: group.admin
  119. add_principal identifier.steam: group.admin
  120.  
  121. # remove the # to hide player endpoints in external log output
  122. #sv_endpointprivacy true
  123.  
  124. # server slots limit (must be between 1 and 31)
  125. sv_maxclients 31
  126.  
  127. # license key for server (https://keymaster.fivem.net)
  128. sv_licenseKey
Add Comment
Please, Sign In to add comment