Frequently Asked Questions: Difference between revisions
Tags: Mobile edit Mobile web edit |
m Remove performance progress flag 6 from "Can I unlock evolution earlier in the game?" since it doesn't seem to be actually required |
||
| Line 205: | Line 205: | ||
=== Can I unlock evolution earlier in the game? === | === Can I unlock evolution earlier in the game? === | ||
Yes! This can be done by adding a single line of code to the game. Add | 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: | ||
<syntaxhighlight> | <syntaxhighlight>dungeon_mode(177) = DMODE_OPEN_AND_REQUEST;</syntaxhighlight> | ||
dungeon_mode(177) = DMODE_OPEN_AND_REQUEST;</syntaxhighlight> | |||
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 ones: | 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 ones: | ||
<syntaxhighlight>$PERFORMANCE_PROGRESS_LIST[10] = 1;</syntaxhighlight> | <syntaxhighlight>$PERFORMANCE_PROGRESS_LIST[10] = 1;</syntaxhighlight> | ||