Guest User

Untitled

a guest
Feb 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 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 mysql_connection_string "server=127.0.0.1;database=vrpfx;userid=root;"
  7. set playernames_svTemplate "[{{id}}] {{firstname}} {{name}}"
  8. set playernames_template "{{serverName}}"
  9.  
  10. #required
  11. start mapmanager
  12. start chat
  13. start spawnmanager
  14. start fivem
  15. start hardcap
  16. start rconlog
  17. #start scoreboard
  18. start mysql-async
  19. start playernames
  20.  
  21. #vrp
  22. start vrp_mysql
  23. start vrp
  24. start vrp_playernames
  25. start vrp_basic_mission
  26. start vrp_barbershop
  27. start vrp_carwash
  28. start vrp_loadfreeze
  29. start vRP_AdvancedFuel
  30. start vrp_job_display
  31. start vrp_bankrobbery
  32. start vrp_basic_menu
  33. start vrp_barrier
  34. start vrp_TruckerJob
  35. start vrp_slotmachine
  36. start vrp_ubermission
  37. start vrp_fixcar
  38. start vrp_dvcar
  39. start vrp_hotkeys
  40. start vrp_chopshop
  41. start railhouse
  42. start online
  43. start bob74_ipl
  44. start pvp
  45. start Ped
  46. start banking
  47.  
  48. #custom
  49. start blips
  50. start club_B
  51. start club_R
  52. start racetrack
  53. start map
  54. start VK_interiors
  55. start ThereMap
  56. start indicators
  57. start simeonfix
  58. start pNotify
  59. start lux_vehcontrol
  60. start lscustoms
  61. start BrockALPR
  62. start RealisticVehicleFailure
  63. start warmenu
  64. start k9
  65.  
  66. #condensed scripts (non-vrp)
  67. start CustomScripts
  68.  
  69. #police vehicles
  70. start bcso
  71. start Captain14_LSPD
  72. start Captain14_Sheriff
  73. start DodgeCharger2014
  74. start FordExplorer
  75. start hwycars
  76. start pol718
  77. start polf430
  78. start policeb
  79. start polmav
  80. start riot
  81.  
  82. #police skins
  83. start detective
  84. start ems
  85. start hway
  86. start police
  87. start sheriff
  88. start sheriffd
  89. start swat
  90.  
  91. #job vehicles
  92. start repairtruck
  93.  
  94. #custom cars
  95. start Audi_C7_RS6
  96. start Audi_S5
  97. start Lexus_RC350
  98. start r8ppi
  99. start c10custom
  100. start chantom
  101. start skyline
  102. start subaruimpreza
  103. start f4rr
  104. start firebird
  105. start ford
  106. start GT
  107. start moto
  108. start moto2
  109. start moto3
  110. start evo
  111. start truck
  112.  
  113. #Keep this here, it stops some errors
  114. restart sessionmanager
  115.  
  116. sv_scriptHookAllowed 0
  117.  
  118. # change this and remove the # before rcon_password if you are using rcon, if not, leave this as is
  119. #rcon_password ChangeMe
  120.  
  121. sv_hostname "inFeriaCola"
  122.  
  123. # nested configs!
  124. #exec server_internal.cfg
  125.  
  126. # loading a server icon (96x96 PNG file)
  127. load_server_icon logo.png
  128.  
  129. # convars for use from script
  130. set temp_convar "hey world!"
  131.  
  132. # disable announcing? clear out the master by uncommenting this
  133. #sv_master1 ""
  134.  
  135. # want to only allow players authenticated with a third-party provider like Steam?
  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:110000112345678 group.admin # add the admin to the group
  143.  
  144. # hide player endpoints in external log output
  145. #sv_endpointprivacy true
  146.  
  147. # server slots limit (default to 30)
  148. sv_maxclients 32
  149.  
  150. # Get a key from https://keymaster.fivem.net
  151. sv_licensekey j0z85o5qoozbt0n8mail7748h7sdgq6i
Add Comment
Please, Sign In to add comment