-
Enter the Nintendo WFC Settings menu, which can be found in any WFC-enabled game.
-
Select "Nintendo Wi-Fi Connection Settings".
-
Set up a new connection if you haven't already done so, then select the connection slot you wish to use.
-
Scroll down and set "Auto-obtain DNS" to "No", then set Primary DNS to
178.62.43.212and Secondary DNS to0.0.0.0. Select "OK" to confirm.
This file contains hidden or 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
| { | |
| "remoteVersionUrl": "https://download-cdn.miitomo.com/native/20180125111639/manifests/v2_20180405_3_android/version.json", | |
| "remoteManifestUrl": "https://download-cdn.miitomo.com/native/20180125111639/manifests/v2_20180405_3_android/manifest.json", | |
| "packageUrl": "https://web.archive.org/web/0id_", | |
| "version": "v2.0.1481", | |
| "engineVersion": "2", | |
| "assets": { | |
| "20150101afesgaeukgwebp.zip": { | |
| "md5": "", | |
| "path": "http://download-cdn.miitomo.com/native/20180125111639/android/v2/20150101afesgaeukgwebp.zip", |
This file contains hidden or 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
| # Decrypt Mii QR codes from 3DS / Wii U / Miitomo | |
| # Usage: python3 <input file> <output file> | |
| # QR docs: https://www.3dbrew.org/wiki/Mii_Maker | |
| from Crypto.Cipher import AES | |
| from sys import argv | |
| key = bytes([0x59, 0xFC, 0x81, 0x7E, 0x64, 0x46, 0xEA, 0x61, 0x90, 0x34, 0x7B, 0x20, 0xE9, 0xBD, 0xCE, 0x52]) | |
| with open(argv[1], "rb") as infile, open(argv[2], "wb") as outfile: |
This file contains hidden or 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
| # usage: python3 kwzSignature.py <privkey.pem> <target.kwz> | |
| # rsa module installed with: | |
| # pip3 install rsa | |
| # documentation here: | |
| # https://stuvel.eu/files/python-rsa-doc/usage.html | |
| import struct | |
| import rsa | |
| import zlib |
This file contains hidden or 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
| from PIL import Image | |
| SAMPLING_METHODS = { | |
| "ANTIALIAS": Image.ANTIALIAS, | |
| "BILINEAR": Image.BILINEAR, | |
| "BICUBIC": Image.BICUBIC, | |
| "NEAREST": Image.NEAREST | |
| } | |
| class drawingImage: |
This file contains hidden or 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
| # crappy miitomo asset downloader | |
| # usage: python3 miitomo-asset.py < url for manifest.json > | |
| from pathlib import Path | |
| from io import BytesIO | |
| from sys import argv | |
| import zipfile | |
| import urllib.request | |
| import json |
Thanks to @shutterbug2000 and @Larsenv for scraping these, I just decoded them and dumped them all into a markdown doc
This file contains hidden or 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
| # Custom Flipnote (.ppm) Thumbnail Tool | |
| # Create a ppm thumbnail from any 64 x 48 image | |
| # Requires Pillow - https://github.com/python-pillow/Pillow | |
| # | |
| # By Jaames <github.com/jaames | @rakujira on twitter> | |
| # | |
| # Usage: python3 thumbtool.py input.ppm thumb.png | |
| from PIL import Image | |
| from sys import argv |
This API provides access to information and features related to ecommerce. Such as providing a list of installed titles, etc
First it's necessary to create an instance of the ECommerceInterface class, the instance is used to interact with the API.
Nintendo create a single instance and store it globally as ec: