Recent content by ChainedHope

  1. C

    Homebrew COMPLETED PyNX - Game Redirector

    Update is live on github. Delete your old config.ini and let it generate the new one. After that you can go in and edit it as you please. There are three sections to the new config. COMMON, DONOR TITLES, and DONORS USED COMMON holds paths. If you want to use a different structure for where your...
  2. C

    Homebrew COMPLETED PyNX - Game Redirector

    Its a known issue with contextlib that I was testing. Apparently 'suppress' is completely skipping the move operations. I'm fixing it right now, should be able to push the new script with the better config.ini later today. Also you just had to change the number at the top of the script (0 for...
  3. C

    Homebrew COMPLETED PyNX - Game Redirector

    I look forward to it :D I'm taking your advice and checking if PyNX has included ConfigParser (I know I should have checked this already but... oh well?). If it does, I will make this an actual config file and rewrite the read_config and write_config portions. Sorry If I sounded annoyed.. I just...
  4. C

    Homebrew COMPLETED PyNX - Game Redirector

    Its technically not wrong. config can be used for anything to do with configuration. It configures what games are where. Tbf config.ini originally was going to store everything (file paths, donor tids, game directory), but to make things simple and keep small errors from popping up, it was...
  5. C

    Homebrew COMPLETED PyNX - Game Redirector

    The config is auto generated based on the script (was made that way so that people wouldn't mess up writing their own as things are case sensitive). Its not too hard to update the lists to use what you want as it is, but I might update it to use a dictionary instead as that would technically be...
  6. C

    Homebrew COMPLETED PyNX - Game Redirector

    I'm glad you said something, I spaced that completely when I rewrote a few things... adding now
  7. C

    Homebrew COMPLETED PyNX - Game Redirector

    I've moved over to github. https://github.com/Kozlowlw/py-switch People can make pull requests if they want to update functionality. I've also rewritten some parts of it (again)... Testing is still being done, but if anyone wants to grab it they are welcome to.
  8. C

    Homebrew COMPLETED PyNX - Game Redirector

    Saves are doable. I know PyNX can do it, but I haven't messed with it yet. I didn't have time today to do much, but I have a toggle at the top of the script right now to switch between the romfs dir, romfs.bin, and romfs.romfs. I still need to test it before I upload. Mostly debugging with all...
  9. C

    Homebrew RELEASE Title Cross | Folder modifier for LayeredFS

    Clever idea! I wish I would have thought about it xD
  10. C

    Homebrew COMPLETED PyNX - Game Redirector

    It does in my version, that wont be uploaded until tomorrow when I get another minor bug worked out and have time to look into a better UI option I just saw.
  11. C

    Homebrew COMPLETED PyNX - Game Redirector

    There are 6 '/RomFs/ locations in the file. You probably missed line 143. (in "def move_currently_used_back_to_games_folder(self):")
  12. C

    Homebrew COMPLETED PyNX - Game Redirector

    Moving files is renaming. When you move a file, you are essentially renaming it and making the os change how it links to it. It doesn't physically move in the memory (NAND). That is what this does, but it adds a storage space for you to temporary keep your games that you aren't using...
  13. C

    Homebrew COMPLETED PyNX - Game Redirector

    Glad to hear it, if you hit any more snags just leave a message. 99% of the time it is going to be your config.ini. So test using 'Put Games Back' first and then deleting the config if you happen into any weird issues. Put Games Back will drop your games back into their original folders in...
  14. C

    Homebrew COMPLETED PyNX - Game Redirector

    I pushed it. The file system changed a bit in this one. /switch/games/{Game Name}/RomFs /switch/games/{Game Name}/ExeFs. Do note that it currently only works with RomFs as a folder. If you want to use a .bin file then open the script in notepad++ (or something thats not regular notepad) and...
  15. C

    Homebrew COMPLETED PyNX - Game Redirector

    Lmao well the stacktrace is totally me. I fixed that early this morning but it was after I uploaded. I'm uploading my current version. Still working out some issues with the config.ini (idk why I'm having so much trouble with it for... just small things keep popping up after extended use)...