Advertisement
Guest User

FiveM Server.cfg

a guest
Nov 27th, 2018
4,568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.58 KB | None | 0 0
  1. ###############################################################################
  2. # Main Post Configuration - Recommended not to change unless multiple servers #
  3. ###############################################################################
  4. endpoint_add_tcp "0.0.0.0:30120"
  5. endpoint_add_udp "0.0.0.0:30120"
  6.  
  7. ###################################################################
  8. # Resources - Make sure to add 'start' infront of resource names! #
  9. ###################################################################
  10. start mapmanager
  11. start chat
  12. start spawnmanager
  13. start sessionmanager
  14. start fivem
  15. start hardcap
  16. start rconlog
  17. start scoreboard
  18. start playernames
  19.  
  20. ###########################################################
  21. # Script Hook - Allow client side trainers such as Lambda #
  22. ###########################################################
  23. sv_scriptHookAllowed 1
  24.  
  25. ######################################################
  26. # RCON Options - While uncommented RCON is disabled. #
  27. ######################################################
  28. #rcon_password changeme
  29.  
  30. ##############################################################################
  31. # Server Tags, tags are seperated by commas. Example: "roleplay, tanks, lit" #
  32. ##############################################################################
  33. sets tags "default"
  34.  
  35. ##############################################################
  36. # Server info & connecting banner (Any size image will work) #
  37. ##############################################################
  38. #sets banner_detail "http://url.to/image.png"
  39. #sets banner_connecting "http://url.to/image.png"
  40.  
  41. ################################################################################
  42. # Server hostname, what your server will say on the FiveM Server Search System #
  43. ################################################################################
  44. sv_hostname "My new FXServer!"
  45.  
  46. #########################
  47. # Nested Configurations #
  48. #########################
  49. #exec server_internal.cfg
  50.  
  51. ##############################
  52. # Server Logo - 96 by 96 PNG #
  53. ##############################
  54. #load_server_icon myLogo.png
  55.  
  56. #######################################
  57. # Convars that can be used by scripts #
  58. #######################################
  59. set temp_convar "hey world!"
  60.  
  61. ###############################################################################################
  62. # FiveM Server Search System - Uncomment if you wish to have your server hidden from the FSSS #
  63. ###############################################################################################
  64. #sv_master1 ""
  65.  
  66. #######################################################################################################################
  67. # Uncomment if you want third-party providers to only be able to connect to your server. Such as Steam and SocialClub #
  68. #######################################################################################################################
  69. #sv_authMaxVariance 1
  70. #sv_authMinTrust 5
  71.  
  72. ###############################################################################################################################
  73. # Add System Admins - You can follow this tutorial https://forum.fivem.net/t/how-to-get-the-steam-hex-for-whitelisting/110404 #
  74. ###############################################################################################################################
  75. add_ace group.admin command allow # Gives admins permission to all commands
  76. add_ace group.admin command.quit deny # Denies admins to use the command 'quit'
  77. add_principal identifier.steam:110000112345678 group.admin # Add a user to the admin group. (Click above URL to find HEX's)
  78.  
  79. #################################################################################
  80. # Hide Player Endpoints, setting this to false will expose players ip addresses #
  81. #################################################################################
  82. sv_endpointprivacy true
  83.  
  84. ##################################################################################################
  85. # Server player slot limit. Must be set to a minimum of 1 and a max of 32 players. 32 is default #
  86. ##################################################################################################
  87. sv_maxclients 32
  88.  
  89. #############################################################################################################################
  90. # License key - This is required for your server to run, please visit https://keymaster.fivem.net/ to obtain a license key. #
  91. #############################################################################################################################
  92. sv_licenseKey changeme
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement