Frequently Asked Questions: Difference between revisions
→ROM hacking: capitalization fix for "Pokémon" Tags: Mobile edit Mobile web edit |
Tags: Mobile edit Mobile web edit |
||
| Line 203: | Line 203: | ||
If you want to skip the quiz and force a specific player and partner combination, see “[[FAQ#Can I skip the personality test in my hack and just force a certain starting team?|Can I skip the personality test in my hack and just force a certain starting team?]]” in the scripting section. | If you want to skip the quiz and force a specific player and partner combination, see “[[FAQ#Can I skip the personality test in my hack and just force a certain starting team?|Can I skip the personality test in my hack and just force a certain starting team?]]” in the scripting section. | ||
=== Can I unlock evolution earlier in the game? === | |||
Yes! This can be done by adding a single line of code to the game. Add this line to the script you'd like to enable evolution in: | |||
<code>$PERFORMANCE_PROGRESS_LIST[10] = 1;</code> | |||
Refer to the [[List of Script Locations]] if you're looking for a particular scene in the game, and can't find the script. If you want to enable it at the very start of the game, you can add it to m01a0101.ssb. Note that this does not remove the evolution restriction from the hero/partner! This is a separate flag, which can be set with an additional line, alongside the prior one: | |||
<code>$PERFORMANCE_PROGRESS_LIST[6] = 1;</code> | |||
These lines must be placed within <code>def 0 {</code>. | |||
=== Can I expand the list of starters (e.g. to add starters from later generations?) === | === Can I expand the list of starters (e.g. to add starters from later generations?) === | ||