Advertisement
Guest User

Untitled

a guest
Apr 12th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. import struct
  2. savefile = open('00000000.bin', 'rb')
  3. try:
  4.     test = savefile.read()
  5. finally:
  6.     savefile.close()
  7.  
  8. print "Header: " + test[0x00000000:0x00000004]
  9. print "First Parental code: " + test[0x000060F4:0x000060F8]
  10. print "Second Parental code: " + test[0x0000D0F4:0x0000D0F8]
  11. print "You have to try these 2 parental codes on your 3DS."
  12. print "If you see [0000] or enpty result mean is parental code not found or the code is [0000]."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement