cooley
///Keepin' it simple
- 1,148
- Posts
- 18
- Years
- United States
- Seen Dec 5, 2014
Code:
1. Using my tool, Megamap in the Toolbox. It will give you the Pointer though, just get the offset through A-point. I was so kind, I did it for you!
Sudowoodo Pointer: 4BAA61
Sudowoodo Offset: 12E1AA
2. You shouldn't change the people numbers through Gold map, you should try hex. And maybe a bit of Pksprite (overworld editor)
3. There is no flags tutorial, but I can teach you.
If you've ever hacked Firered/Leafgreen before, then you'll see that it is the same as Gold.
Firered:
checkflag 0x200
if 0x1 goto $pointer -----If it has been set then goto another pointer
...... -----If it hasn't then continue with the script
......
setflag 0x200 ------Set the flag, so that next time it can be checked, and won't happen again.
end
Gold:
31 10 00 09 xx xx ....... 33 10 00 90
31 = Check for flag
'requires 2 bytes which are the flag numbers
09 = Ram Check [2]
' 09 means "if yes" and 08 means "If no"
33 = Set a flag
'requires 2 bytes which are the flag numbers
90 = End script
'No parameters required
xx xx = Pointer to another script
10 00 = Flag ID you can use an flag you wish, but the numbers are reverse hex. 0010 = 1000 in-game. 1000 = 0010 in-game, etc.
....... = Script
That should explain everything, now to add it to the tutorial!
[2] = [FONT="]
[/FONT]
Code:
06-0B RAM checks:
06: When [RAM]=byte ...
07: When [RAM]<>byte ...
08: When [RAM]=0 ...
09: When [RAM]<>0 ...
0A: When [RAM]<byte ...
0B: When [RAM]>byte ...
Italicized = Command
Underlined = Command parameters
By the way everyone, I updated the First Post with More commands and an Item and Pokemon List.
Enjoy!
Last edited: