PyNTR is similar to PyGecko, a Python program that allows you to communicate with your 3DS and read / write RAM.
Feature | Status | Note |
---|---|---|
Connecting | Done | |
Raw packet sending | Nearly Done | Remoteplay is still missing |
Reading Memory | Done | |
Writing Memory | Done |
# Importing the PyNTR Class
from PyNTR import PyNTR
# Creating a client || PyNTR(IP)
client = PyNTR('192.168.0.11')
# Testing the connection with a "Hello" packet || client.send_hello_packet()
client.send_hello_packet()
# Get the PID of a process by name || client.set_game_name(GameName) ; returns Integer ( Pid )
# 'redgiant' is Monster Hunter 4 Ultimate
client.set_game_name('redgiant')
# Reading an Integer
# Sending the Read Packet || client.ReadU32(Address) ; returns Integer ( Data )
data = client.ReadU32(0x08369410)
# Writing a new value || client.WriteU32(Address, Data)
client.WriteU32(0x08369410, 7777777)
# This would set the Zenny to 7777777 in MH4U (US)
- Cell9 - Creating NTR CFW
- imthe666st
- Svanheulen - Basic Python-NTR script
- Haifischbecken - Distracting me while working.