some people also don't have access to their routers parental controls, making them unable to block from parental controls.
I'm pretty sure it's the Wii U's parental constrols, not a router.
Also, a few thoughts since it's 6AM and I can't sleep
1) If you want a WBFS equivalent that'll be sustainable, you'd be best using
this. That by itself can't create new files but it's a good start and it reuses the existing format.
2) I've been poking at textures some more, I have something from a while ago that can convert GTX straight to PNG but it doesn't work with swizzling, yet. I keep trying but nothing's clicking, if you wanna try there's an issue
here with more stuff. I might try zhuowei's version out later.
3) It's probably not a good time to be motivated since I'm trying to sleep but I'm also gonna try to poke at documenting some more functions, the Add-On Content library is fairly straightforward, and I wanted to try getting AX audio streaming working but it's tedious to debug with RPC or TCPGecko so I haven't done anything with it yet.
4) After the new rewrite which I still need to push, TCPGecko is basically better in every way to RPC. I need to add back the upload function to the codehandler, but
- It can obtain and call symbols (has a tcp.function to do it all in one line) and lets you specify isData for functions that need it, and it prettyprints the addresses now for easy copypaste.
- Upload should make it easy to upload data blobs like custom ROMs, only allows 0x400 bytes or 1KB per call but it's better than overloading the socket trying to poke tons of times.
- It has FS and SAVE reimplemented so it's super easy to look around in some apps (need to add a silencer variable to get_symbol so it doesn't spam all the functions it autoruns).
- It's Python so you can make scripts to automate lots of stuff like I have, and you can set up your internet connection to use a static local IP so it never changes.
Only the memory tab is implemented in the GUI since I got caught up on making it perfect, but everything should work with Python 3 and PyQt5 since I was forced to upgrade because Qt4 didn't have something I needed :<
Also, the qHexSpinBox has a weird double tick if you use the arrows and then press the update button, not sure how to fix it. I'll make a better thread explaining it all when I get it pushed (I make lots of promises, feel free to smack me if I forget).