Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. #Keep this here, it stops some errors
  2. restart sessionmanager
  3.  
  4. sv_scriptHookAllowed 0
  5.  
  6. sv_hostname "GSR German Second Roleplay"
  7.  
  8. # nested configs!
  9. #exec server_internal.cfg
  10.  
  11. loading a server icon (96x96 PNG file)
  12. load_server_icon logo.png
  13.  
  14. # convars for use from script
  15. set temp_convar "Viel Spaß:)!"
  16.  
  17. # disable announcing? clear out the master by uncommenting this
  18. #sv_master1 ""
  19.  
  20. # want to only allow players authenticated with a third-party provider like Steam?
  21. #sv_authMaxVariance 1
  22. #sv_authMinTrust 5
  23.  
  24. # add system admins
  25. add_ace group.admin command allow # allow all commands
  26. add_ace group.admin command.quit deny # but don't allow quit
  27. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  28.  
  29. # hide player endpoints in external log output
  30. #sv_endpointprivacy true
  31.  
  32. # server slots limit (default to 30)
  33. sv_maxclients 32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement