- Using hactool, extract the exefs of your game
- Within the exefsdir, there should be "main" and "main.npdm" and possibly a few others
- "main" is the game's main nso, you can load it into IDA and create your own patches or go out and find some
- When you have your patches put them all in a file in this format: (all values should be in hex)
location:codepatch
Example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while true; do | |
echo "Getting History..." | |
python2 ./ythistory.py -j cookiefile --since since.txt > videolist.txt | |
echo "Downloading Videos..." | |
while read line; do | |
youtube-dl --write-all-thumbnails --all-subs --write-description --write-annotations --write-info-json -o "%(uploader)s/%(title)s/%(id)s.%(ext)s" $line | |
done < videolist.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hashlib, binascii | |
import sys, subprocess, os | |
# NXO64 Stuff here | |
# | |
# | |
#-------------------------------------------------- | |
# Copyright 2017 Reswitched Team | |
# | |
# Permission to use, copy, modify, and/or distribute this software for any purpose with or |
The goal of these tests are to find any small bugs or issues I haven't found yet so tangerine can have a smooth release.
To get started, download the latest build here, and extract the files from it.