Guest User

Untitled

a guest
May 16th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 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:30120"
  3. endpoint_add_udp "0.0.0.0:30120"
  4.  
  5. start mapmanager
  6. start chat
  7. start spawnmanager
  8. start sessionmanager
  9. start fivem
  10. start hardcap
  11. start rconlog
  12. start scoreboard
  13. start playernames
  14.  
  15. # allow client mods such as Lamda Menu?
  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 "JRP | Offical Server"
  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. # Uncomment to DISABLE your server coming up in the server list
  37. #sv_master1 ""
  38.  
  39. # want to only allow players authenticated with a third-party provider like Steam (don't forget, Social Club is a third party provider too!)?
  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 32)
  52. sv_maxclients 32
  53.  
  54. # license key for server (https://keymaster.fivem.net)
  55. sv_licenseKey bysffamj5kkrbp2r1popjwnd5glkq3z2
Add Comment
Please, Sign In to add comment