You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release builds are available here on GitHub and on NexusMods: https://www.nexusmods.com/thehuntercallofthewild/mods/440
6
+
7
+

6
8
7
9
This tool can make all species a diamond, the appropriate species a Great one, or have a rare fur.
8
10
@@ -13,30 +15,32 @@ The following mods are possible with this tool:
13
15
1. Make a female animal a male.
14
16
1. Make a male a female.
15
17
16
-
The modded population files can be found in a `mods` folder in the same directory you are running the tool.
17
-
18
-
To download the latest releases of this tool, go to [NexusMods](https://www.nexusmods.com/thehuntercallofthewild/mods/225) where you can also post bugs and have a conversation with the COTW modding community.
19
-
20
-
Testing with game version: 2649775
18
+
The modded population files can be found in a `mods` folder in the same directory you are running the tool.
21
19
22
20
## Limitations:
21
+
23
22
* This tool was tested on Windows 11 with the game installed via Steam. It is smart enough to also look where Epic Games saves its files too. If your game files are saved somewhere else besides where Steam or Epic saves them, use the `Configure Game Path` button.
24
23
* The species that use the newer TruRACS trophy system may not become a diamond. This is an area where I am still doing research to figure out how exactly to manipulate.
25
24
* If you use the executables (EXE) files, your system may complain there is a virus. This is not true, but the `pyinstaller` package that builds the executable is often used by hackers, and so it is being flagged. To avoid this, simply install the tool from the `wheel` file or build it from source.
26
-
25
+
27
26
## How To Build
28
27
29
28
> Note: This code was built and tested with Python 3.10.10.
30
29
31
-
To install dependencies:
30
+
Setup virtual environment:
31
+
```sh
32
+
python -m venv venv
33
+
venv\Scripts\activate
34
+
```
35
+
36
+
Install dependencies:
32
37
```sh
33
38
pip install -r requirements.txt
34
-
python -m PySimpleGUI.PySimpleGUI upgrade
35
39
```
36
40
37
41
You can run the packages directly by using:
38
42
```sh
39
-
pyton -m apcgui
43
+
python -m apcgui
40
44
```
41
45
42
46
You can install a developer version by using:
@@ -48,15 +52,15 @@ If you want to build from a wheel:
0 commit comments