- Jul 15, 2017
- 5,498
- 45,776
This is the check , it is called every time you unlock an achievement :Still nobody out there who knows for sure how the "Completionist" achievement can be obtained? I have all other achievements and all gallery scenes unlocked. So I guess that should qualify for being a completionist. But obviously it doesn't.
Python:
label check_for_completionist_achievement:
if persistent.accompletionist != 1 and persistent.achappyend == 1 and persistent.acdaddyf == 1 and persistent.acrickshaw == 1 and persistent.acupatch == 1 and persistent.acdmd == 1 and persistent.acmoneyjoke == 1 and persistent.acallends == 1 and persistent.acspecialf == 1 and persistent.acendone == 1 and persistent.acendoneb == 1:
pause
$ persistent.accompletionist = 1
$ renpy.notify("Achievement: Completionist")
# Doesn't check for: "acendtwo, acendthree, acendfour, acendfive" achievements because it checks for 'completed all ends' achievement instead, which is equivalent.
return