Quick Reply
Search this Thread
Mad Poster
#34076 Old Today at 3:17 AM
RPC can be configured to always delete your cache files.
Advertisement
Mad Poster
#34077 Old Today at 4:16 AM
Quote: Originally posted by Pideli
What's the mod that always deletes your cache files before starting the game?


RPC can do it. Alternately, I use the Playnite game launcher and have it execute this PowerShell script before game launch.

Code:
$FileName = "D:\Documents\Saved Games\The Sims\The Sims 2\Accessory.cache"
if (Test-Path $FileName) 
{
  Remove-Item $FileName
}

$FileName = "D:\Documents\Saved Games\The Sims\The Sims 2\Groups.cache"
if (Test-Path $FileName) 
{
  Remove-Item $FileName
}

$FileName = "D:\Documents\Saved Games\The Sims\The Sims 2\cigen.package"
if (Test-Path $FileName) 
{
  Remove-Item $FileName
}

I'm secretly a Bulbasaur. | Formerly known as ihatemandatoryregister

Looking for SimWardrobe's mods? | Or Dizzy's? | Faiuwle/rufio's too! | smorbie1's Chris Hatch archives
Mad Poster
#34078 Old Today at 1:42 PM
Quote: Originally posted by FranH
AFAIK, there is no 'mod' that deletes the caches before you start your game-however there are 2 empty caches that you can place in your game folders that when you delete the game caches, they will replace them with empty cache holders-you set them to 'read only' and they won't grow appreciably when you run your game.


Do you not need the stuff that gets stored in the cache file while you're playing the game?
Page 1364 of 1364
Back to top