summaryrefslogtreecommitdiff
path: root/Implementing-the-“textcolor”-script-command-from-FRLG-and-give-object-eve...
diff options
context:
space:
mode:
authorchowder908 <chowder90856@gmail.com>2021-09-04 16:55:51 -0500
committerchowder908 <chowder90856@gmail.com>2021-09-04 16:55:51 -0500
commit2e3dd63dd4dcd683d2651e5230ddf1af1e5f3337 (patch)
tree4ab5b74b3698fe588bbe5367853647a28e82f573 /Implementing-the-“textcolor”-script-command-from-FRLG-and-give-object-events-their-own-text-colour.md
parente25c238daae38cc9aff86fbff046adb674e97cc7 (diff)
Updated Implementing the “textcolor” script command from FRLG and give object events their own text colour (markdown)
Diffstat (limited to 'Implementing-the-“textcolor”-script-command-from-FRLG-and-give-object-events-their-own-text-colour.md')
-rw-r--r--Implementing-the-“textcolor”-script-command-from-FRLG-and-give-object-events-their-own-text-colour.md22
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