Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 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 fivem
  10. start hardcap
  11. start rconlog
  12. start scoreboard
  13.  
  14. sv_scriptHookAllowed 1
  15.  
  16. # change this
  17. rcon_password xaxaxa
  18.  
  19. sv_hostname "My new FsadsadaXServer!"
  20.  
  21. # nested configs!
  22. #exec server_internal.cfg
  23.  
  24. # loading a server icon (96x96 PNG file)
  25. #load_server_icon myLogo.png
  26.  
  27. # convars for use from script
  28. set temp_convar "hey world!"
  29.  
  30. # disable announcing? clear out the master by uncommenting this
  31. #sv_master1 ""
  32.  
  33. # want to only allow players authenticated with a third-party provider like Steam?
  34. #sv_authMaxVariance 1
  35. #sv_authMinTrust 5
  36.  
  37. # add system admins
  38. add_ace group.admin command allow # allow all commands
  39. add_ace group.admin command.quit deny # but don't allow quit
  40. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  41.  
  42. # hide player endpoints in external log output
  43. #sv_endpointprivacy true
  44.  
  45. # choose what map to load, keep to make it only use the default map
  46. map fivem-map-hipster
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement