forked from auto-chess-ui-mod/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
22 lines (19 loc) · 1.21 KB
/
config.py
File metadata and controls
22 lines (19 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
## Modify these paths to your system!
paths = dict(
path_to_game = os.path.abspath(r"C:\Game\Steam\steamapps\common\dota 2 beta\game\dota"),
path_to_vpk = os.path.abspath(r"C:\Game\Steam\steamapps\common\dota 2 beta\game\dota\pak01_dir.vpk"),
path_to_decompiler = os.path.abspath(r"C:\Software\VPK_tools\Decompiler0.0.16\Decompiler.dll"),
path_to_compiler = os.path.abspath(r"C:\Game\Steam\steamapps\common\dota 2 beta\game\bin\win64\resourcecompiler.exe"),
path_to_custom_code = os.path.abspath(r"D:\modding_tools\auto-chess-ui-mod\source"),
path_to_content_folder = os.path.abspath(r"C:\Game\Steam\steamapps\common\dota 2 beta\content\custom_dac_ui"),
path_to_mod_folder = os.path.abspath(r"C:\Game\Steam\steamapps\common\dota 2 beta\game\custom_dac_ui"),
path_to_folder_to_compile = os.path.abspath(r"C:\Game\Steam\steamapps\common\dota 2 beta\content\custom_dac_ui\panorama"),
path_to_vpk_packager = os.path.abspath(r"C:\Software\VPK_tools\VPK_CREATOR\vpk.exe"),
path_to_store_og_code = os.path.normpath("tmp/original_code"),
path_to_store_uncompiled_code = os.path.normpath("tmp/modified_code_uncompiled"),
)
params = dict(
DRAW_STATS = True,
TIER_INDICATOR = True,
)