Edward Newgate
Everyone is a child of the sea
- 273
- Posts
- 13
- Years
- Age 29
- The Netherlands
- Seen Dec 26, 2020
First of all I want to let you all know that I am a complete rookie when it comes to ASM hacking. I just followed my first ever tutorial on it, trying to learn and understand how it works.
(I followed This tutorial)
Ok so, I followed everything it said. I put the activation script at offset 0x750020 and put the de-activation script at 0x75013C.
My script looks like this, as it should according to the tut:
I also put the palette code into 0x750000.
However, when I load up the rom, it appears like this:
The text is transparent, and the textbox is half-transparent'ish.
As I said earlier, the solution might (and possibly will) be a really easy one and it wouldn't surprise me if it is caused by a stupid mistake on my part, because I am an absolute rookie in ASM hacking but I'm very eager to learn it with so many new things to add-in :)
Thanks in advance,
Edward Newgate.
(I followed This tutorial)
Ok so, I followed everything it said. I put the activation script at offset 0x750020 and put the de-activation script at 0x75013C.
My script looks like this, as it should according to the tut:
Spoiler:
Code:
#dynamic 0x817504
#org @start
callasm 0x750021
msgbox @1 0x5
callasm 0x75013D
compare LASTRESULT 0x0
if 0x1 goto @no
compare LASTRESULT 0x1
if 0x1 goto @yes
end
#org @no
callasm 0x750021
msgbox @2 0x2
callasm 0x75013D
end
#org @yes
callasm 0x750021
msgbox @3 0x2
callasm 0x75013D
end
#org @1
= Yes or no?
#org @2
= No.
#org @3
= Yes.
I also put the palette code into 0x750000.
However, when I load up the rom, it appears like this:
Spoiler:
![[PokeCommunity.com] ASM hacking help [PokeCommunity.com] ASM hacking help](https://i1270.photobucket.com/albums/jj612/jordyvdv18/Naamloos_zps5b6d5948.png)
The text is transparent, and the textbox is half-transparent'ish.
As I said earlier, the solution might (and possibly will) be a really easy one and it wouldn't surprise me if it is caused by a stupid mistake on my part, because I am an absolute rookie in ASM hacking but I'm very eager to learn it with so many new things to add-in :)
Thanks in advance,
Edward Newgate.