Make it work on non-steam/other drives

Fixing application for users who have Counter-Strike: 1.6 installed on another drive or have a pirated version of the game (I do NOT support pirated versions.)

Downloading the source code

Go to the "releases" tab Press on the .py file that is linked under the "assets" Open the .py file in Visual Studio Code or whatever python code editing software your prefer.

Fixing the code

Go down to the part of code where:

predefined_destinations = {

is seen in the code Edit the part under that says something like:

".wav": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\sound",

Change this to whatever path you would like, such as

".wav": r"F:\SteamLibrary\steamapps\common\Half-Life\cstrike\sound",
This has to be copy and pasted for all of those code blocks with extensions
predefined_destinations = {
        ".wav": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\sound",
        ".mdl": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\models",
        ".bsp": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".lin": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".log": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".map": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".nav": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".p0": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".p1": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".p2": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".p3": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".prt": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".pts": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".wic": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\maps",
        ".spr": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\sprites",
        ".amxx": r"C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike\addons\amxmodx\plugins"
    }

Last updated