So I downloaded this Pre-Installed game from a respected torrent site. But whenever I run the game, the bottom 5 files get updated/changed apparently. And this torrent goes to the error section in Qbittorrent. Now I have to delete the exe and other small files from my folder and redownload them again through this torrent else this torrent wouldn’t seed.

So I would not be able to seed those bottom 5 files unless I have a completely fresh install of the game ? and that means, I either have to unselect those bottom 5 files from my torrent client or create a copy of the game in another Folder so the exe and other python files don’t get updated as I play the game ?

  • Norah (pup/it/she)@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    1 day ago

    I think it’s still against the etiquette of torrenting as well. If you only download a few episodes from a season pack then partial seeding is fine, but leaving a game unplayable if you’re the only seed is wrong in my opinion.

    That said, in terms of solutions OP, if you’re conscious of disk space:

    1. You could hard link the files that don’t change to a new folder, then copy the ones that do change. Don’t need to change filesystems like the other person’s solution. Soft link will also work but then when you wanna delete the torrent files you’ll have to go manually copy the rest over to your install folder.
    2. You could always try “force recheck” in the torrent application once you finish playing. It’s likely that whatever changes are happening to those files only occurs while the game is open, potentially even just locking them to read-only, and the torrent application won’t really recheck them once that happens without manual intervention.

    Edit: tagging so you see this OP: @[email protected]

    • GingerBreadMan@lemmy.dbzer0.comOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 day ago

      You could always try “force recheck” in the torrent application once you finish playing. It’s likely that whatever changes are happening to those files only occurs while the game is open

      Yeah I’ve tried that, it didn’t work, I even tried restarting the system before doing a force recheck to make sure they’re not open in the background but it still doesn’t work.

      You could hard link the files that don’t change to a new folder, then copy the ones that do change

      I was thinking of doing this too as I mentioned in my other comment, this seems the only option.

      • Norah (pup/it/she)@lemmy.blahaj.zone
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 day ago

        If you wanna hard link a directory btw, use cp -lR <src-dir> <dest-dir> to do it. You can’t actually hard link the directory itself, only its contents, so this command will create the directory structure and hard link the files within them.