Guest User

Untitled

a guest
Jul 8th, 2020
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. # Only change the IP if you're using a server with multiple network interfaces, otherwise change the port only.
  2. endpoint_add_tcp "0.0.0.0:30120"
  3. endpoint_add_udp "0.0.0.0:30120"
  4.  
  5. # Execute vMenu permissions
  6. exec permissions.cfg
  7.  
  8. # Connect to database
  9. set mysql_connection_string "<databaseCredentialsHereOfCourse>"
  10.  
  11. ############
  12. # STANDARD #
  13. ############
  14. ensure mapmanager
  15. ensure chat
  16. ensure spawnmanager
  17. ensure sessionmanager
  18. ensure fivem
  19. ensure hardcap
  20. ensure rconlog
  21.  
  22. ensure fivepd
  23. ensure fivepdaudio
  24.  
  25. ensure vMenu
  26.  
  27. #############
  28. # FRAMEWORK #
  29. #############
  30. ensure cowardframework
  31. ensure mysql-async
  32. ensure pNotify
  33. ensure progressBars
  34. ensure whitelist
  35. ensure tokovoip_script
  36. ensure ls-radio
  37.  
  38. ##########
  39. # FIVEPD #
  40. ##########
  41.  
  42.  
  43. ########
  44. # MAPS #
  45. ########
  46. ensure flywheels
  47. ensure missionrowpd
  48. ensure openinteriors
  49. ensure paletopd
  50. ensure pillbox
  51. ensure sandypd
  52.  
  53. ########
  54. # MISC #
  55. ########
  56. ensure aop
  57. ensure emotes
  58. ensure newscam
  59. ensure postal
  60. ensure dpclothing
  61.  
  62. ###########
  63. # VEHICLE #
  64. ###########
  65. ensure ai_mechanic
  66. ensure blackout
  67. ensure frfuelplus
  68. ensure heli
  69. ensure lux_vehcontrol
  70. ensure rvf
  71. ensure spikestrips
  72. ensure tow
  73. ensure vehpackciv
  74. ensure vehpackem
  75. ensure wraith_alpr
  76.  
  77. ###########
  78. # WEAPONS #
  79. ###########
  80. ensure taserfix
  81. ensure weapons
  82.  
  83. #######
  84. # EUP #
  85. #######
  86. ensure NativeUI
  87. ensure eup_sr
  88. ensure eup_ui
  89.  
  90. # This allows players to use scripthook-based plugins such as the legacy Lambda Menu.
  91. # Set this to 1 to allow scripthook. Do note that this does _not_ guarantee players won't be able to use external plugins.
  92. sv_scriptHookAllowed 0
  93.  
  94. # Uncomment this and set a password to enable RCON. Make sure to change the password - it should look like rcon_password "YOURPASSWORD"
  95. #rcon_password ""
  96.  
  97. # A comma-separated list of tags for your server.
  98. # For example:
  99. # - sets tags "drifting, cars, racing"
  100. # Or:
  101. # - sets tags "roleplay, military, tanks"
  102. sets tags "default"
  103.  
  104. # A valid locale identifier for your server's primary language.
  105. # For example "en-US", "fr-CA", "nl-NL", "de-DE", "en-GB", "pt-BR"
  106. sets locale "da"
  107. # please DO replace root-AQ on the line ABOVE with a real language! :)
  108.  
  109. # Set an optional server info and connecting banner image url.
  110. # Size doesn't matter, any banner sized image will be fine.
  111. #sets banner_detail "https://url.to/image.png"
  112. #sets banner_connecting "https://url.to/image.png"
  113.  
  114. # Set your server's hostname
  115. sv_hostname "^6Coward ^0Gaming - ^1SAFOS ^0- ^4Trainer Baseret ^0 - https://cowardgaming.dk"
  116.  
  117. # Nested configs!
  118. #exec server_internal.cfg
  119.  
  120. # Loading a server icon (96x96 PNG file)
  121. load_server_icon SAFOS_Fivem.png
  122.  
  123. # convars which can be used in scripts
  124. set temp_convar "hey world!"
  125.  
  126. # Uncomment this line if you do not want your server to be listed in the server browser.
  127. # Do not edit it if you *do* want your server listed.
  128. #sv_master1 ""
  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.fivem:1 group.admin # add the admin to the group
  134. add_principal identifier.steam:11000011255C438 group.admin
  135. add_principal identifier.steam:1100001026544A9 group.admin
  136. add_principal identifier.steam:110000105D4ADC8 group.admin
  137. add_principal identifier.steam:11000010624B586 group.admin
  138. add_principal identifier.steam:11000010265DB27 group.admin
  139. add_principal identifier.steam:11000010804D3C2 group.admin
  140.  
  141. # Hide player endpoints in external log output.
  142. sv_endpointprivacy true
  143.  
  144. # enable OneSync with default configuration (required for server-side state awareness)
  145. onesync_enabled false
  146.  
  147. # Server player slot limit (must be between 1 and 32, unless using OneSync)
  148. sv_maxclients 32
  149.  
  150. # Steam Web API key, if you want to use Steam authentication (https://steamcommunity.com/dev/apikey)
  151. # -> replace "" with the key
  152. set steam_webApiKey "<steamAPIKeyHereOfCourse>"
  153.  
  154. # License key for your server (https://keymaster.fivem.net)
  155. sv_licenseKey <licenseKeyHereOfCourse>
Add Comment
Please, Sign In to add comment