Binary ROM HackingNeed a helping hand or just want to talk about binary ROM hacks? Get comments and answers to any ROM Hacking-related problems, questions or thoughts you have here.
Hi, so in order to make my ROM hack story oriented I needed to put in a diff static name for both genders and the Rival. after searching a lot on google as well as pokecommunity. I could only find one sure fire way and that was inserting an ASM routine. I followed the steps and looked up a tutorial for the same and after doing everything, my ROM just go corrupted. So if anyone can explain to me how to put in a static/locked name please do, it would be a great help!
Hi, so in order to make my ROM hack story oriented I needed to put in a diff static name for both genders and the Rival. after searching a lot on google as well as pokecommunity. I could only find one sure fire way and that was inserting an ASM routine. I followed the steps and looked up a tutorial for the same and after doing everything, my ROM just go corrupted. So if anyone can explain to me how to put in a static/locked name please do, it would be a great help!
well one thing that becomes obvious is that if you want a static name you'll have to skip certain parts of the intro, but i'll leave that to you
Spoiler:
Code:
.text
.align 2
.thumb
setname:
push {r0-r1, lr}
ldr r1, name
ldr r1, [r1]
mov r0, # @ letter identifier in hexadecimal
strb r0, [r1]
mov r0, # @ letter identifier in hexadecimal
strb r0, [r1, #0x1]
mov r0, # @ letter identifier in hexadecimal
strb r0, [r1, #0x2]
@ code for subsequent letters following the two-line pattern above
pop {r0-r1, pc}
.align 2
name:
.word 0x0300500C
hit me up if it doesn't make sense
Hi Blu rose! i have been waiting but i haven't heard from you, can you help me? Because the naming part is the only thing that's left before i can release my HACK