Advertisement
Guest User

GMOD SERVER CODES

a guest
Feb 23rd, 2020
2,277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. START.BAT CODE
  2.  
  3. @echo off
  4. cls
  5. echo Protecting srcds from crashes...
  6. echo If you want to close srcds and this script, close the srcds window and type Y depending on your language followed by Enter.
  7. title srcds.com Watchdog
  8. :srcds
  9. echo (%time%) srcds started.
  10. start /wait srcds.exe -console -game cstrike +map de_dust +maxplayers 16
  11. echo (%time%) WARNING: srcds closed or crashed, restarting.
  12.  
  13. ADDONS CODE - ADD AFTER MAX PLAYERS IN START.BAT
  14.  
  15. +host_workshop_collection INSERT KEY -authkey INSERT KEY
  16.  
  17. SERVER.CFG CODE
  18.  
  19. // Base Configuration
  20. hostname "INSERT NAME HERE"
  21. sv_password "INSERT PASSWORD HERE"
  22. rcon_password "INSERT HERE"
  23.  
  24. // Network Configuration
  25. sv_loadingurl ""
  26. sv_downloadurl ""
  27. sv_allowdownload 1
  28. sv_allowupload 1
  29. sv_lan 0
  30. net_maxfilesize 64
  31.  
  32. // Logging Configuration
  33. log on
  34. sv_logbans 0
  35. sv_logecho 0
  36. sv_logfile 1
  37. sv_log_onefile 0
  38.  
  39. // Sandbox Configuration
  40. sbox_noclip 1
  41. sbox_godmode 0
  42. sbox_playershurtplayers 1
  43. sbox_maxprops 150
  44. sbox_maxragdolls 6
  45. sbox_maxnpcs 0
  46. sbox_maxballoons 6
  47. sbox_maxeffects 6
  48. sbox_maxdynamite 0
  49. sbox_maxlamps 6
  50. sbox_maxthrusters 6
  51. sbox_maxwheels 6
  52. sbox_maxhoverballs 6
  53. sbox_maxvehicles 0
  54. sbox_maxbuttons 10
  55. sbox_maxemitters 0
  56.  
  57. // Exec Bans
  58. exec banned_user.cfg
  59. exec banned_ip.cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement