Quote:
Originally Posted by IIIGenPokefreak
But one might be, can these pointers and hex lines be recycled or ammended? Or do I have to create entirely new sets of pointers and hex lines?
|
If you're asking whether pointers from one script can be reused in another, then yep! One script is all you need to define the pointer, such as:
#org 0x8000000
= This is my text that I've written!
You can call on that text for a msgbox in any other script by using:
msgbox 0x88000000
(followed by the rest of the regular msgbox code).
Remember that you have to use static pointers like I've done for this, not "@text" .
That'll work for movement data too!