Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix files being incorrectly copied (sv_pure_bypass_7)
Browse files Browse the repository at this point in the history
  • Loading branch information
szmarczak committed Sep 18, 2020
1 parent c263d83 commit 2546d31
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions sv_pure_bypass_7_2/disable_wallhack.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

set CSGO_BAK="C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo_bak"

cd %CSGO_BAK%
cd /D %CSGO_BAK%

copy pak01_008.vpk.org pak01_008.vpk /y
copy pak01_008.vpk.org pak01_008.vpk /B /Y

echo Please close the window.
pause>nul
Expand Down
4 changes: 2 additions & 2 deletions sv_pure_bypass_7_2/enable_wallhack.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

set CSGO_BAK="C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo_bak"

cd %CSGO_BAK%
cd /D %CSGO_BAK%

copy pak01_008.vpk.wh pak01_008.vpk /y
copy pak01_008.vpk.wh pak01_008.vpk /B /Y

echo Please close the window.
pause>nul
Expand Down
6 changes: 3 additions & 3 deletions sv_pure_bypass_7_2/prepare.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
set CSGO="C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo"

if exist pak01_008.vpk.wh (
copy pak01_008.vpk.wh %CSGO%\pak01_008.vpk.wh /y
copy pak01_008.vpk.wh "%CSGO%\pak01_008.vpk.wh" /B /Y
)

cd %CSGO%
cd /D %CSGO%

if not exist pak01_008.vpk.org (
copy pak01_008.vpk pak01_008.vpk.org /y
copy pak01_008.vpk pak01_008.vpk.org /B /Y
)

echo Please close the window.
Expand Down

0 comments on commit 2546d31

Please sign in to comment.