Guest User

kekk

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