igorkrnic

Untitled

Sep 27th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. // This file configures the process of file patching and cleaning in order to protect your Counter-Strike client
  2.  
  3. // 'patch' variable is used to control the process of 'hw.dll' patch
  4. // Original 'hw.dll' file can be found under the name 'hw.dll.orig'
  5. // If 'hw.dll.orig' file exists, it is the one being copied to 'hw.dll' and patched.
  6. // Otherwise, existing 'hw.dll' file will be patched.
  7. // If the patching process succeeds variable is restarted to 0.
  8. // 0 - don't patch 'hw.dll' file
  9. // 1 - fully patch 'hw.dll' file
  10. patch 1
  11.  
  12. // 'clean' variable is used to control the process of file cleaning, specifically files which are modified by servers more than often
  13. // Original files are recognized by the '.orig' extension
  14. // If the cleaning process succeeds variable is restarted to 0
  15. // 0 - don't clean anything
  16. // 1 - basic clean (*.asi, cstrike/autoconfig.cfg, cstrike/autoexec.cfg, cstrike/joystick.cfg, cstrike/language.cfg, cstrike/userconfig.cfg, cstrike/violence.cfg, cstrike/resource/GameMenu.res, valve/valve.rc)
  17. // 2 - full clean = basic clean + (cstrike/config.cfg, cstrike/commandmenu.txt, cstrike/server.cfg, cstrike/listenserver.cfg)
  18. clean 0
Advertisement
Add Comment
Please, Sign In to add comment