First of all, I have a log error after starting the game:
Code: Select all
Bootstrap to the start of init.init took 0.07s
Early init took 0.02s
Loader init took 0.05s
Loading error handling took 0.05s
Loading script took 0.22s
Loading persistent took 0.03s
Imported steam.
Failed to initialize steam.
Running init code took 0.37s
The next probable screwup point is the app id. It lives in the steam_appid.txt file in the root Ren'py folder like E:/SDK/ and contains a single 6-digit string like this:
Code: Select all
XXXXXX
And the last potential trouble point is the achievement's granting process itself. I used the solution from another thread so it looks like this:
Code: Select all
#here ends one of the paths and the final fade out begins
$achievement.grant("ED1")
init:
$achievement.register("ED1")
$achievement.Sync()
$achievement.Sync()
scene black
with fade
window hide
pause 0.1
jump quit
Thank you!