summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrainerX493 <47459767+TrainerX493@users.noreply.github.com>2020-12-21 14:16:36 -0700
committerTrainerX493 <47459767+TrainerX493@users.noreply.github.com>2020-12-21 14:16:36 -0700
commit534e8024702e25f622b9f498ff54ac3e4bce0ed5 (patch)
tree02edc71fb3b34d7deb5eed36e20252d6f61cc860
parent323c8e1a5ffb8d7ca9ab6ccfd5295f335cd92b62 (diff)
Fixes and more inclusive for the expansions.
-rw-r--r--Better-White-Out-Money-Calculation.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/Better-White-Out-Money-Calculation.md b/Better-White-Out-Money-Calculation.md
index ac050ac..4b718c2 100644
--- a/Better-White-Out-Money-Calculation.md
+++ b/Better-White-Out-Money-Calculation.md
@@ -35,7 +35,7 @@ Now we have to link the constants we added previously to the labels of these new
+ [STRINGID_PLAYERPAIDPRIZEMONEY - 12] = sText_PlayerPaidPrizeMoney,
```
-Again, you can add these wherever you want. If you want to remain consistent, you would add them right after Line 849, but it doesn't matter as long as you add them to the table.
+Again, you can add these wherever you want. If you want to remain consistent, you would want once again add them right under `sText_YouThrowABallNowRight`, but it doesn't matter as long as you add them to the table.
## 2. Modifying the White Out BattleScript
@@ -66,6 +66,7 @@ You can guess what are we going to modify next, can't you?
## 3. Modifying the `Cmd_getmoneyreward` function
+Now we want to open **[src/battle_script_commands.c](https://github.com/pret/pokeemerald/blob/master/src/battle_script_commands.c)**.
Before anything, we have to define a new variable and 2 array lists that we're going to use soon enough.
```diff