Patch.tjs Xp3filter.tjs !link! -
// Example Patch.tjs snippet // Overriding the original save function to bypass checks originalSave = SaveSystem.saveGame; SaveSystem.saveGame = function(slot) // Add custom logic here System.inform("Bypassing save restrictions..."); return originalSave(slot);
You will often see these files working together in a translation patch distribution. The structure usually looks like this: Patch.tjs Xp3filter.tjs