Script Could anyone explain what are script offsets...
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.
"You said you have a dream...That dream...Make it come true ! Make your wonderful dream a reality, and it will become your truth ! If anyone can, it's you !"
Join Date: Nov 2020
Location: Kerala,India
Age: 16
Gender:
Male
Nature: Sassy
Posts: 118
I would be happy if anyone can explain about script offsets and how to give which offset to an event...
Thank You
Script offsets are places where each compiled script is located. Lets say #dynamic 0x800000 found free space at 0x810000 to compile your script.
The script starts at 0x810000 , and that is the number you assign to events.
If you don't want to use #dynamic, you can use free space finder, or upen up the rom in a hex editor, navigate to 0x800000 and look for free space "FF" bytes.
"You said you have a dream...That dream...Make it come true ! Make your wonderful dream a reality, and it will become your truth ! If anyone can, it's you !"
Join Date: Nov 2020
Location: Kerala,India
Age: 16
Gender:
Male
Nature: Sassy
Posts: 118
if i dont use #dynamic 0x800000, I can check free space in free space finder and then type in #org 0xoffset, correct?