- Oct 26, 2017
- 1,574
- 1,295
I recommend using the developer console for this since all events have varying scenes depending on who's in your team at the time (there is no scene recollection, only the 120 CGs and the sprite testing you can unlock after beating the game).someone has a save with 100% unlock?
1) Press
Shift+O
to fire up the console. If you can't run the console, create a file in the /game/ subfolder (where the .rpa files are) and save it as a .rpy file. Keep the indent as it is or you will run into errors.
Python:
init 999 python hide:
config.console = True
config.developer = True
config.developer
should imply console, so skip config.console
if you wish.)2) If you still have to enable developer mode, type
config.developer = True
in the console. This will unlock sprite testing (if you haven't already cleared the game) and enable debugging.3) Now to make it persistent. Check if you've cleared the game:
persistent.game_clear
. If it's False
, set it to True
.4) Let's unlock your CGs now. Again, in the console:
Python:
for cg in cg_list:
renpy.show(cg)
renpy.hide(cg)
5) Set the XP, drop rate and mana shard multiplier to 50x (will become 100x with the Luck Statue; anything higher will unbalance the drop rates and if the final multiplier is 200x or more you will never get any seed due to how the drop checking logic works). Besides, this is already overkill as developer mode is supposed to allow for 4x.
persistent.xp = 50.0
What does this do, exactly?
- 50x XP gain (which means you'll always gain at least 5 XP regardless of level difference)
- 50x Mana Shard gain
- 50x drop rate for seeds (drop rate varies depending on enemy level, but since the drop list is processed in succession and exits once it has a drop, you do not want to disable important drops unless you plan to spawn the item and don't mind never seeing it)
- 25% drop rate for skill scrolls instead of 0.5%
6) Start a new game while still in developer mode (difficulty doesn't matter but I'd still recommend playing at Abyssal difficulty). This will allow you to directly spawn to post-game with all events still unseen, as well as watch events individually if you want to.
Recommended guides for achievements and 100% secrets (you can also check for them using the debugger)
You must be registered to see the links
by Ssenkrad_II
You must be registered to see the links
by TRGVery late to the party but hope this helps.
Edit: Fixed priority and location. Been a (very) long time since I touched Ren'py and assumed it backwards, so the new config would just end up being overwritten by
You must be registered to see the links
config calls.
Last edited: