From 7f4eb7097cd983ef14f79af98e525e790e6bbe54 Mon Sep 17 00:00:00 2001 From: Hannover <146978592+yungDoom@users.noreply.github.com> Date: Wed, 15 May 2024 14:38:29 +0300 Subject: [PATCH] Fixed --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0d1af4d..460d95a 100644 --- a/README.md +++ b/README.md @@ -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:**