diff options
-rw-r--r-- | Implementing-the-“textcolor”-script-command-from-FRLG-and-give-object-events-their-own-text-colour.md | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/Implementing-the-“textcolor”-script-command-from-FRLG-and-give-object-events-their-own-text-colour.md b/Implementing-the-“textcolor”-script-command-from-FRLG-and-give-object-events-their-own-text-colour.md index 629a072..406f448 100644 --- a/Implementing-the-“textcolor”-script-command-from-FRLG-and-give-object-events-their-own-text-colour.md +++ b/Implementing-the-“textcolor”-script-command-from-FRLG-and-give-object-events-their-own-text-colour.md @@ -195,5 +195,25 @@ The changes should look something like this: - #define SPECIAL_VARS_END 0x8015 + #define SPECIAL_VARS_END 0x8016 ``` +Lastly you will want to edit `data\event_scripts` -And with that, you should have successfully reimplemented `textcolor` and gave object events their own text colour.
\ No newline at end of file +```diff +- .4byte gSpecialVar_Unused_0x8014 ++ .4byte gSpecialVar_TextColor +``` + +And with that, you should have successfully reimplemented `textcolor` and gave object events their own text colour. + +List of colors that can be used. +``` +{COLOR}{RED}RED +{COLOR}{GREEN}GREEN +{COLOR}{DARK_GRAY} +{COLOR}{LIGHT_GRAY} +{COLOR}{LIGHT_RED} +{COLOR}{LIGHT_GREEN} +{COLOR}{BLUE} +{COLOR}{LIGHT_BLUE} + + +```
\ No newline at end of file |