0 of 0

File information

Last updated

Original upload

Created by

godlvl

Uploaded by

godlvl222

Virus scan

Some suspicious files

Tags for this mod

About this mod

It's a batch script that clears trash.json

Permissions and credits
A batch file that deletes trash.json and replaces it with an empty file in every single save to improve FPS

Source:

@echo off
setlocal enabledelayedexpansion
set "userProfile=%USERPROFILE%"
for /d %%D in ("%userProfile%\AppData\LocalLow\TVGS\Schedule I\Saves\*") do (
    set "steamIDFolder=%%D"
    for /d %%S in ("!steamIDFolder!\SaveGame_*") do (
        set "filePath=%%S\Trash\trash.json"
        if exist "!filePath!" del "!filePath!"
        type nul > "!filePath!"
    )
)
echo trash.json cleared. Press any key to exit.
pause >nul
exit