Guest User

Untitled

a guest
May 26th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 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. start mapmanager
  7. start chat
  8. start spawnmanager
  9. start sessionmanager
  10. start fivem
  11. start hardcap
  12. start rconlog
  13. start scoreboard
  14. start playernames
  15.  
  16. sv_scriptHookAllowed 1
  17.  
  18. # change this
  19. #rcon_password yay
  20.  
  21. # a comma-separated list of tags for your server
  22. # for example: sets tags "drifting, cars, racing" or sets tags "roleplay, military, tanks"
  23. sets tags "default"
  24.  
  25. sv_hostname "My new FXServer!"
  26.  
  27. # nested configs!
  28. #exec server_internal.cfg
  29.  
  30. # loading a server icon (96x96 PNG file)
  31. #load_server_icon myLogo.png
  32.  
  33. # convars for use from script
  34. set temp_convar "hey world!"
  35.  
  36. # disable announcing? clear out the master by uncommenting this
  37. #sv_master1 ""
  38.  
  39. # want to only allow players authenticated with a third-party provider like Steam?
  40. #sv_authMaxVariance 1
  41. #sv_authMinTrust 5
  42.  
  43. # add system admins
  44. add_ace group.admin command allow # allow all commands
  45. add_ace group.admin command.quit deny # but don't allow quit
  46. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  47.  
  48. # remove the # to hide player endpoints in external log output
  49. sv_endpointprivacy true
  50.  
  51. # server slots limit (must be between 1 and 31)
  52. sv_maxclients 30
  53.  
  54. # license key for server (https://keymaster.fivem.net)
  55. sv_licenseKey 3067z5uxkp3856ww53u6brw7trd3m9x0
Add Comment
Please, Sign In to add comment