A more or less accurate reimplementation of the Wii U's nn_nfp.rpl library, with the goal of research and amiibo emulation.
Requires the Aroma environment.
:warning: This is still really experimental and work-in-progress!
Check the compatibility list for confirmed working games.
re_nfpii is split into a module and a plugin.
The module completely replaces all exports of nn_nfp and adds additional exports for configuration. A majority of the code tries to be accurate to what nn_nfp is doing, so don't question some of the design choices.
The plugin handles the configurarion menu for the module and some additional things which can't be added to the module.
.zip
file to your target environment.wiiu/re_nfpii
. Subfolders are also supported and can be browsed from the configuration menu.re_nfpii
folder starting with a Title ID (without the -
) will be automatically opened for that game (for example a folder named 0005000010144F00 - Smash Bros
would automatically open for Smash Bros USA).:information_source: Official Amiibo figures can currently not be used while the module is loaded.
To use the figures again delete there_nfpii.wms
file from yourmodules
folder.
The remove after feature "removes" the virtual tag from the reader after the specified amount of time.
You can mark Amiibo as favorites using X. By setting a Quick Select button combination, you can quickly cycle through your favorites.
re_nfpii comes with an Amiibo dumper in the configuration menu. This allows you to dump your tags directly to the wiiu/re_nfpii/dumps
folder.
The Wii U Plugin System does not work in applets, such as the Amiibo Settings, yet.
This means you can't open the re_nfpii configuration while in the Amiibo Settings.
To use the Amiibo Settings, select the Amiibo you want to configure before entering them, and everything else will be handled automatically.
After returning from the Amiibo Settings, re-enable Amiibo emulation.
This currently just reimplements the major parts of nn_nfp and redirects tag reads and writes to the SD Card.
For future releases it is planned to have additional features and a custom format which does not require encryption.
Building re_nfpii using the Dockerfile is recommended:
# Build docker image (only needed once)
docker build . -t re_nfpii_builder
# make
docker run -it --rm -v ${PWD}:/project re_nfpii_builder make
# make clean
docker run -it --rm -v ${PWD}:/project re_nfpii_builder make clean