Advertisement
Guest User

Untitled

a guest
Oct 8th, 2018
1,458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.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. # These resources will start by default.
  7. start mapmanager
  8. start chat
  9. start spawnmanager
  10. start sessionmanager
  11. start fivem
  12. start hardcap
  13. start rconlog
  14. start scoreboard
  15. start playernames
  16.  
  17. # This allows players to use scripthook based plugins such as lambda menu.
  18. # Set this to 0 to disallow scripthook.
  19. sv_scriptHookAllowed 1
  20.  
  21. # Uncomment this to enable RCON. Make sure to change the password.
  22. #rcon_password changeme
  23.  
  24. # A comma-separated list of tags for your server.
  25. # For example:
  26. # - sets tags "drifting, cars, racing"
  27. # Or:
  28. # - sets tags "roleplay, military, tanks"
  29. sets tags "default"
  30.  
  31. # Set an optional server info and connecting banner image url.
  32. # Size doesn't matter, any banner sized image will be fine.
  33. #sets banner_detail "http://url.to/image.png"
  34. #sets banner_connecting "http://url.to/image.png"
  35.  
  36. # Set your server's hostname
  37. sv_hostname "My new FXServer!"
  38.  
  39. # Nested configs!
  40. #exec server_internal.cfg
  41.  
  42. # Loading a server icon (96x96 PNG file)
  43. #load_server_icon myLogo.png
  44.  
  45. # convars which can be used in scripts
  46. set temp_convar "hey world!"
  47.  
  48. # Uncomment this line if you do not want your server to be listed in the server browser.
  49. #sv_master1 ""
  50.  
  51. # Want to only allow players authenticated with a third-party provider like Steam?
  52. # Don't forget Social Club is a third party provider too!
  53. #sv_authMaxVariance 1
  54. #sv_authMinTrust 5
  55.  
  56. # Add system admins
  57. add_ace group.admin command allow # allow all commands
  58. add_ace group.admin command.quit deny # but don't allow quit
  59. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  60.  
  61. # Hide player endpoints in external log output.
  62. sv_endpointprivacy true
  63.  
  64. # Server player slot limit (must be between 1 and 32)
  65. sv_maxclients 32
  66.  
  67. # License key for your server (https://keymaster.fivem.net)
  68. sv_licenseKey changeme
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement