Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
1,091
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 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:30128"
  3. endpoint_add_udp "0.0.0.0:30128"
  4.  
  5. set mysql_connection_string "server=localhost;database=live_server;userid=live;password=localpass123;sslmode=none"
  6. set mysql_debug false
  7.  
  8.  
  9. # QUEUE SETTINGS
  10. set sv_debugqueue true
  11. set sv_displayqueue false
  12. set sv_whitelisted false
  13.  
  14. #######################
  15. ### FiveM Resources ###
  16. #######################
  17. ensure baseevents
  18. ensure chat
  19. ensure customInteriors
  20. ensure fivemcsharp
  21. ensure handling
  22. ensure InteractSound
  23. ensure iplLoader
  24. ensure maps
  25. ensure mellotrainer
  26. ensure NativeUI
  27. ensure pNotify
  28. ensure queuemanager
  29. ensure rconlog
  30.  
  31. ensure GHMattiMySQL
  32. ensure NightClub
  33. ensure 3dme
  34. ensure core
  35. ensure global_api
  36. ensure adminutilities
  37. ensure aiTaxi
  38. ensure anticheat
  39. ensure bank_robbery
  40. ensure banking
  41. ensure bennys
  42. ensure bus
  43. ensure civ_stuff
  44. ensure crafting
  45. ensure customs
  46. ensure dealerships
  47. ensure dutyblips
  48. ensure emotes
  49. ensure ems
  50. ensure fakeids
  51. ensure fuel
  52. ensure gcphone
  53. ensure golf
  54. ensure helicopter
  55. ensure hotwire
  56. ensure housing
  57. ensure hud
  58. ensure hunting
  59. ensure illegal
  60. ensure insurance
  61. ensure inventory
  62. ensure job_system
  63. ensure mdt
  64. ensure mechanic
  65. ensure motels
  66. ensure notepad
  67. ensure offices
  68. ensure other
  69. ensure outfits
  70. ensure peds
  71. ensure police
  72. ensure prison
  73. ensure racing
  74. ensure radar
  75. ensure robberies
  76. ensure sharedbanking
  77. ensure stats
  78. ensure storage
  79. ensure sync
  80. ensure tattooshop
  81. ensure taxi_meter
  82. ensure vineyard
  83. ensure WeaponDamage
  84. ensure weapons
  85. ensure WeazelNewsCam
  86.  
  87.  
  88. # This allows players to use scripthook-based plugins such as the legacy Lambda Menu.
  89. # Set this to 1 to allow scripthook. Do note that this does _not_ guarantee players won't be able to use external plugins.
  90. sv_scriptHookAllowed 0
  91.  
  92. # Uncomment this and set a password to enable RCON. Make sure to change the password - it should look like rcon_password "YOURPASSWORD"
  93. #rcon_password ""
  94.  
  95. # A comma-separated list of tags for your server.
  96. # For example:
  97. # - sets tags "drifting, cars, racing"
  98. # Or:
  99. # - sets tags "roleplay, military, tanks"
  100. sets tags "default"
  101.  
  102. # A valid locale identifier for your server's primary language.
  103. # For example "en-US", "fr-CA", "nl-NL", "de-DE", "en-GB", "pt-BR"
  104. sets locale "root-AQ"
  105. # please DO replace root-AQ on the line ABOVE with a real language! :)
  106.  
  107. # Set an optional server info and connecting banner image url.
  108. # Size doesn't matter, any banner sized image will be fine.
  109. #sets banner_detail "https://url.to/image.png"
  110. #sets banner_connecting "https://url.to/image.png"
  111.  
  112. # Set your server's hostname
  113. sv_hostname "FXServer, but unconfigured"
  114.  
  115. # Nested configs!
  116. #exec server_internal.cfg
  117.  
  118. # Loading a server icon (96x96 PNG file)
  119. #load_server_icon myLogo.png
  120.  
  121. # convars which can be used in scripts
  122. set temp_convar "hey world!"
  123.  
  124. # Uncomment this line if you do not want your server to be listed in the server browser.
  125. # Do not edit it if you *do* want your server listed.
  126. #sv_master1 ""
  127.  
  128. # Add system admins
  129. add_ace group.admin command allow # allow all commands
  130. add_ace group.admin command.quit deny # but don't allow quit
  131. add_principal identifier.fivem:1 group.admin # add the admin to the group
  132.  
  133. # Hide player endpoints in external log output.
  134. sv_endpointprivacy true
  135.  
  136. # Server player slot limit (must be between 1 and 32, unless using OneSync)
  137. sv_maxclients 32
  138.  
  139. # Steam Web API key, if you want to use Steam authentication (https://steamcommunity.com/dev/apikey)
  140. # -> replace "" with the key
  141. set steam_webApiKey "9133D4A718BC6C862D0AD64A83DFC0BD"
  142.  
  143. # License key for your server (https://keymaster.fivem.net)
  144. sv_licenseKey bwabigwdpgmjjcn2w0cb6e2mkrd5sogq
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement