Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. # only change these if you're using a server with multiple network interfaces
  2. endpoint_add_tcp "0.0.0.0:19003"
  3. endpoint_add_udp "0.0.0.0:19003"
  4.  
  5. exec permissions.cfg
  6.  
  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. start els-plus
  17. start vMenu
  18. start sadot
  19. start policegt350r
  20. start ecto1
  21. start bmw1200rt
  22. start charger
  23.  
  24. # allow client mods such as Lamda Menu?
  25. sv_scriptHookAllowed 1
  26.  
  27. # change this
  28. #rcon_password yay
  29.  
  30. # a comma-separated list of tags for your server
  31. # for example: sets tags "drifting, cars, racing" or sets tags "roleplay, military, tanks"
  32. sets tags "default"
  33.  
  34. sv_hostname "My new FXServer!"
  35.  
  36. # nested configs!
  37. #exec server_internal.cfg
  38.  
  39. # loading a server icon (96x96 PNG file)
  40. #load_server_icon myLogo.png
  41.  
  42. # convars for use from script
  43. set temp_convar "hey world!"
  44.  
  45. # Uncomment to DISABLE your server coming up in the server list
  46. sv_master1 ""
  47.  
  48. # want to only allow players authenticated with a third-party provider like Steam (don't forget, Social Club is a third party provider too!)?
  49. #sv_authMaxVariance 1
  50. #sv_authMinTrust 5
  51.  
  52. # add system admins
  53. add_ace resource.els-plus command.add_ace allow
  54. add_ace group.admin command allow # allow all commands
  55. add_ace group.admin command.quit deny # but don't allow quit
  56. #add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  57.  
  58. # remove the # to hide player endpoints in external log output
  59. #sv_endpointprivacy true
  60.  
  61. # server slots limit (must be between 1 and 32)
  62. sv_maxclients 32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement