made this 5 months ago kinda old just found it

alot of ppl were asking how to use imposters and stuff i got bored of answering 1 by 1 so for ppl tht dnt know =]

SonniE’s HoW To Convert any Code To NightPR
Note: this tutorial is based on Nitepr Rev J
Have you ever had your psp freeze when u boot up a game with Nitepr enabled? Well some codes arnt usable the way they are without changing them.
Despite what everyone may think you can put any code into night pr, in the correct format that is. Nitepr only lets you use address’s that end in 0, 4, 8, C, this is because each code ending in one of those address’s can hold all the address’s leading to the next. Example:
#SonniE
0x00BC0038 0x6E6F5315
0x00BC003C 0x0065696E
Outcome of code = SonniE
This is in correct night pr format FYi it’s the name imposter for SFDM. Ok well if u had cm u have to fill out each address one by one 00bc0038 val 21 (also cm does its value in decimal not hexcidecimal like nite but if you pay attention theres a HeX side and Deci to the right.)
Well the 15 stands for red and is located at the address 0x00BC0038. Next the S is located at the addess 0x00BC0039. Notice how there are 4 address in between 38 and 3C (endings of code) and there are 8 spots for values. Well each group of 2 is related to one address. If you were to create your own name in that box you need to do it backwards starting at the red 15 then the 53 is the S the 6F is o etc… now to convert a code lets say u wanted to be the host of any game u join 008030DD is that address now if u were to make a code in nitepr that looked like this:
#HoST
0x008030DD 0x00000001
You would freeze since it has to end in 0, 4, 8, C
Ok using what you learned from reading the above on the name hack you could rewrite in nitepr format like this
#HoST
0x008030DC 0x00000100
Notice where the 1 is located now that is the address 008030DD.
Well that is one way to do it but sometimes u might stll freeze, reason being when enterin a 32 bit code like that can overwrite some address’s with 00. Well you might say to yourself that you only want to modify the data at one address not 4. The alternative is in the format

#HoST
0x008030DC 0x01
This value can be achieved also by pressing square while viewing the code in night the 0’s will be replaced with underscores. Now if you have anymore questions just post and ill get back to you.