You are not logged in.
Pages: 1
Been searching for a little while now for the string of text that comes after you name your rival "I remember now his name is $$" text.
I looked through - oakspeech.asm text.asm main.asm and a couple others.
Offline
It is in text.asm, you just overlooked it is all.
I am not very active on this forum. I only pop in from time to time.
Offline
It is in text.asm, you just overlooked it is all.
Argh! lol your right I passed right by it xD
Thank you!
Offline
Mateo wrote:It is in text.asm, you just overlooked it is all.
Argh! lol your right I passed right by it xD
Thank you!
No problem!
I am not very active on this forum. I only pop in from time to time.
Offline
When searching for text like that, it's much easier to use the "grep" tool to search multiple files at once. In the pokered directory, you can run the following in cygwin:
grep -snir "I remember now" *
This will search all files in pokered for the case-insensitive version of that text. One limitation of this is that it will only search for text on a single line, so if the text is actually something like the following, it won't find it:
text "I remember"
line "now!"
done
My hacks: Pokémon Maize, Pokémon Red: Battle Factory
Offline
Pages: 1