ByXatab
Вход
Регистрация
4
AR-81
18 февраля 2025 11:25
Игра обновлена 18.02.2025 до версии 1.0.37.hf2
Car Mechanic Simulator 2021 v.1.0.37.hf2 [Папка игры] (2021)
0
k4stet
18 февраля 2025 11:23
win11 запуск прошел успешно!
Need For Speed: Porsche Unleashed PC (2000) RePack от Decepticon
1
BrainTrash
18 февраля 2025 11:03
Нет времени гуглить! "Сейчас я буду устанавливать все игры"))
STAR WARS Jedi: Survivor (Patch 9) [Папка игры] (2023)
0
BrainTrash
18 февраля 2025 11:00
Привет! У меня такое было в одном и том же месте, в 2016 году в Fallout 4. Скорее всего это проблема в блоке питания, он не вывозит напряжение которое требует остальное железо. Со временем они деградируют и выдают напряжение меньше заявленного. Поэтому покупать нужно с запасом.
STAR WARS Jedi: Survivor (Patch 9) [Папка игры] (2023)
0
Kondor
18 февраля 2025 10:32
Неудача - это, например, архитектура пентеума 4, которая не смогла, а тут всё работает так, как задумано, то, что оно не сделано для пользователей, это дело 10 в этом вопросе
Avowed [v 1.2.11.0 + DLCs] (2025) RePack от Decepticon
3
Waran
18 февраля 2025 08:52
https://pastebin.com/KN1TRxHR
Можливо покращений. Я не розумію цю мову програмування. )
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
0
xxxFLASHxxx
18 февраля 2025 07:44
Дополню и не только после него, стоит перейти в другую подлокацию и на втором экране загрузки жди вылет из игры
Avowed v.1.4.1.0 [Папка игры] (2025)
0
u2freeuser
18 февраля 2025 06:54
Я, раньше много раз эту игру проходил, но 2025 году с такой графики мне просто стало плохо и я "сломался" в катакомбах, где графика, свет, текстуры, эффекты для нашего времени ужасны до тошноты ...
RealRTCW (2025/02/23) [Архив] (2001-2020)
0
kylewhite
18 февраля 2025 06:30
It seems we had the same idea! Only difference is I made mine in bash because I don't know how to deal with Python but yeah, I hope someone who actually knows how to code can make a more polished utility for the community.
But thanks for taking the time to consider the issue. Cheers.
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
0
AR-81
18 февраля 2025 05:36
Про какой мод речь? Вы какой-то себе ставили?
FINAL FANTASY VII REBIRTH v.1.003 [Папка игры] (2025)
0
TeaRock
18 февраля 2025 05:22
спасибо за ответ.
Warhammer 40,000: Space Marine 2 v.8.0.0.1 [Папка игры] (2024)
0
naber31
18 февраля 2025 04:58
Привет! После обновления возникает ошибка "Failed to read file /End.uproject". У вас был файл мода, но вы его удалили. Проблема остается. Что нужно сделать?
FINAL FANTASY VII REBIRTH v.1.003 [Папка игры] (2025)
4
AR-81
18 февраля 2025 04:34
Обновлена 18.02.2025 со всеми февральскими патчами по вчерашний.
Обновились все локализации.
Обновлена 24.02.2025 со всеми февральскими патчами по вчерашний.
RealRTCW (2025/02/23) [Архив] (2001-2020)
0
AR-81
18 февраля 2025 04:27
В этой игре вообще это предусмотрено? Если да, то во взломанной игре это невозможно. Никаких онлайн-фиксов к ней не существует.
Warhammer 40,000: Space Marine 2 v.8.0.0.1 [Папка игры] (2024)
0
TeaRock
18 февраля 2025 04:07
подскажите есть
возможность
в коопе пройти сюжету?
Warhammer 40,000: Space Marine 2 v.8.0.0.1 [Папка игры] (2024)
1
kylewhite
18 февраля 2025 03:43
Hey folks, some good news, I put together a bash script in ChatGPT that does the job, apparently I can't post links to pastebin so mods let me know how I can share it, but you paste the script to a file named delete_files.bat and put it in the game directory root, then you go to SteamDB and copy the list of files that starts with "Modified - " and paste it on a file named files_to_delete.txt next to the .bat file, run the .bat file and it does the job, it goes and deletes all the files needed, it even parses the "Modified" and the file size out of the list. I did that with this game, re-checked the files and downloaded and the game works fine now.
I'm sure it can be improved in many ways and even be made into a small app that pulls the list from steamdb but this will do for me now and I'm happy with the results!
I will try to post the script in the next comment, sorry mods if that's the wrong way feel free to delete it.
Показать / Скрыть текст
@echo off
setlocal enabledelayedexpansion
:: Set the path to the SteamDB file list
set "file_list=files_to_delete.txt"
:: Get the current directory (where the script is running)
set "base_dir=%CD%"
:: Check if the file exists
if not exist "%file_list%" (
echo File list not found: %file_list%
pause
exit /b
)
:: Read and process each line
for /f "usebackq delims=" %%A in ("%file_list%") do (
set "line=%%A"
:: Remove "Modified - " prefix
set "line=!line:Modified – =!"
:: Remove file size in parentheses
for /f "tokens=1 delims=(" %%B in ("!line!") do (
set "filepath=%%B"
set "filepath=!filepath:~0,-1!"
)
:: Replace forward slashes with backslashes
set "filepath=!filepath:/=\!"
:: Construct the full path relative to the script's directory
set "fullpath=%base_dir%\!filepath!"
:: Ensure it's a file, not a directory, before deleting
if exist "!fullpath!" if not exist "!fullpath!\" (
del /f /q "!fullpath!"
echo Deleted: !fullpath!
) else (
echo Not found or is a directory: !fullpath!
)
)
pause
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
2
Waran
18 февраля 2025 03:27
Something like this?
Показать / Скрыть текст
Here's a simple Python script that deletes files from a list stored in a text file.
1. Format of the file list (file_list.txt):
C:\Users\Username\Desktop\file1.txt
C:\Users\Username\Documents\file2.jpg
D:\Projects\test_file.log
2. Python Script to Delete Files:
import os
FILE_LIST_PATH = "file_list.txt" # Path to the file containing the list of files
def get_file_list(file_path):
"""Reads the list of files from a text file."""
try:
with open(file_path, "r", encoding="utf-8") as f:
files = [line.strip() for line in f.readlines() if line.strip()]
return files
except FileNotFoundError:
print("File list not found!")
return []
def delete_files(files):
"""Deletes files from the list."""
for file in files:
try:
if os.path.exists(file):
os.remove(file)
print(f"Deleted: {file}")
else:
print(f"File not found: {file}")
except Exception as e:
print(f"Error deleting {file}: {e}")
if __name__ == "__main__":
files_to_delete = get_file_list(FILE_LIST_PATH)
if files_to_delete:
delete_files(files_to_delete)
else:
print("The file list is empty or not found.")
How to Use:
1. Create file_list.txt and add file paths to it (one per line).
2. Run the script:
python delete_files.py
3. The script will check for the files and delete them if they exist.
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
0
AR-81
18 февраля 2025 03:00
В свете последних обсуждений выше, просьба отозваться остальных, кто обновляет эту игру у себя с каждым патчем, используя нашу раздачу. Какие трудности встретились и насколько работоспособны ваши обновлённые папки после перехэширования?
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
0
AR-81
18 февраля 2025 02:28
Причина разобрана и здесь и на форуме cs.rin - ваша ОС блокирует "скачанные с другого компьютера" dll-файлы.
Mount & Blade II: Bannerlord v.1.2.12.77991 [Папка игры (Steam)] (2022)
0
Kiss0517
18 февраля 2025 02:16
Винда 11. Проц райзен 5600. мамка рог стрикс. видяха 1660 супер. Запускается ТОЛЬКО натив версия.
Mount & Blade II: Bannerlord v.1.2.12.77991 [Папка игры (Steam)] (2022)
5
AR-81
18 февраля 2025 02:13
Новинка.
https://cs.rin.ru/forum/viewtopic.php?p=3223651#p3223651
Unforgotten: Ordinance (2020/02/27) [Папка игры] (2025)
0
rhymel2
18 февраля 2025 01:52
for the mods to works on 5.2.2, use the same crack from 5.1.1 (copy the folder "The Killing Antidote\Engine\Binaries\ThirdParty\Steamworks").
The Killing Antidote v.0.5.3.2a [Папка игры] (Early Access)
0
kylewhite
18 февраля 2025 01:51
Yes and for more times than I can count I went hunting for those files following steamdb but it gets tiring, that's why I'm asking if there is some method of using some software that you input that list of files and just have them be deleted, that would be a fool proof way of doing these updates.
I tried to do it like you suggested again and this game is a perfect example of why this isn't possible, just inside the Bundles folder there is about 100 modified files in this folder which has more then 9500 loose files, I would delete the whole folder to save the work of finding those files one by one but that folder alone is 26Gb which at that point I might as well download the game again which is what I'm gonna have to do with this one, I wish I knew more about coding so I could write a script where you input the list from steamdb and it just goes and deletes those files, I'm just trying to make this process better for all users, not trying to be confrontational with the mods here. Thanks.
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
0
kylewhite
18 февраля 2025 01:49
I'm using the latest qBitorrent, and its a lottery when it comes to rehashing torrents, sometimes it works, sometimes it doesn't, it isn't as obvious what the client considers modified files because many times that a rehash failed and produced errors I manually deleted the modified files and it worked then.
I'm not trying to be rude but I keep hearing the same "your client must be doing this or that" every time someone has a problem with rehashing, what I don't hear is specific confirmation of "I had the previous version of this game, I rehashed this version on top of it and it worked" so I can know I'm doing something wrong. (sorry the site is being weird with longer messages, continues...)
So again, I'm using qBittorrent 5.0.3, I have rehashed this very game (WH40K: RT) many times without a problem, but some updates just break it. So I'm just trying to find a better process for this type of update to work without manually having to hunt the files, even AR-81 admitted that there is such thing as hunting the files manually so its not a 100% foolproof working method.
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
1
bigbluetrongt
18 февраля 2025 01:09
It seems that the error “EXCEPTION_ACCESS_VIOLATION reading address 0x000000000000000000000000” may be due to a problem in the configuration file/s (DefaultEngine.ini.). This is a common problem in UE 5 that occurs with corrupt or buggy configuration files.
If anyone has the same error, I suggest you delete your configuration files, restart the game and set it up again.
NFO:
https://forums.unrealengine.com/t/unhandled-exception-exception-access-violatio
n-reading-address-0x0000000000000000/752651
STAR WARS Jedi: Survivor (Patch 9) [Папка игры] (2023)
0
bigbluetrongt
18 февраля 2025 00:15
Curiously, the problems described by
l_e_s_h_i_y
do not occur to me and the DLCs are unlocked.
So far so good here (fingers crossed). It would be interesting if more colleagues would share their experiences to know if this is an isolated problem.
Note: It may not be important, but in case it helps, my game is blocked (outbound-inbound) in firewall.
STAR WARS Jedi: Survivor (Patch 9) [Папка игры] (2023)
0
Waran
18 февраля 2025 00:14
The torrent client checks the hash sum of files, and if a file is modified (
even slightly
), it considers it corrupted or incorrect.
I've been using this method for over five years, successfully assembling rare torrents from pieces of neighboring releases by using the latest torrent link I needed.
Your issue is likely because your torrent client doesn't handle file movement correctly or doesn't properly verify and reuse existing files. qBittorrent, for example, allows moving files to a new location while leaving behind any extra or modified files, making it easy to clean up.
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
0
AR-81
18 февраля 2025 00:10
I'm looking
at the latest three updates
and don't see so much junk-files to be a problem to delete them manually.
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
0
kylewhite
17 февраля 2025 23:51
Rehashing won't work, I appreciate the work done by the mods here but they keep saying it should work if you follow the steps on rehashing the files and moving the game folder so you can clean up the leftover files but I had innumerous instances of this NOT working with this and several other games.
Does anyone know of a method to delete the files based on the patch notes from steamdb before rehashing the torrent?
I have tried to move the checked folder before downloading so it would leave back the trash files to be deleted but it wont leave the modified files which are the problem, I tried after downloading with the same result. The only success I had rehashing a game when it has problems like this was by deleting the modified files one by one by hand following the patch notes. Any help appreciated.
Warhammer 40000: Rogue Trader v.1.4.0.196 [Папка игры] (2023)
0
AR-81
17 февраля 2025 23:45
Во время простого скачивания нет энергоёмкой нагрузки на систему. Так что ищите причину.
Kingdom Come: Deliverance II [v 1.3+ DLCs] (2025) RePack от Decepticon
Загрузить еще
1
...
337
338
339
340
341
342
343
344
345
...
5489
Авторизация
Авторизоваться
Войти через
Регистрация
Восстановить пароль