Advertisement
Guest User

Untitled

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