This commit is contained in:
Hannover 2024-05-15 14:38:29 +03:00 committed by GitHub
parent 3480546828
commit 7f4eb7097c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -132,11 +132,11 @@ setx /m RS_PROJECT gta5
1. Find this file: `X:\gta5\src\dev_ng\rage\base\src\file\packfile.cpp`
2. Go to Line 62 and change this:
```cpp
extern const int MaxPackfiles = 1024+718+650/*HD texture pack*/+256/*even more packs*/+256/*more DLC for 2018*/+256/*more DLC for 2019*/+256/*more DLC for 2020*/+256/*more DLC for 2021*/;
extern const int MaxPackfiles = 1024+718+650/*HD texture pack*/+256/*even more packs*/+256/*more DLC for 2018*/+256/*more DLC for 2019*/+256/*more DLC for 2020*/+256/*more DLC for 2021*/;
```
**To This:**
```cpp
extern const int MaxPackfiles = 1024+718+650/*HD texture pack*/+256/*even more packs*/+256/*more DLC for 2018*/+256/*more DLC for 2019*/+256/*more DLC for 2020*/+256/*more DLC for 2021*/+512/*more DLC for 2024*/;
extern const int MaxPackfiles = 1024+718+650/*HD texture pack*/+256/*even more packs*/+256/*more DLC for 2018*/+256/*more DLC for 2019*/+256/*more DLC for 2020*/+256/*more DLC for 2021*/+512/*more DLC for 2024*/;
```
**By far, Your Folder Structure should look like this:**