Oh, that... I commented out lines 208 and 569 with "#", they turned gray, but this did not fix the error.
Naturally, fixing the problem might be not that easy. It can require some debugging and understanding of the code. For instance, if some dictionary member is not found, I would do this:
0. Uncomment the lines you commented out, i.e. try the program in its original form. Run the game.
1. Go to a point a few screens before the bug crashed your game.
2. Open the console and type the name of that dictionary with the missing entry. In this case,
> kiwiiUsers
Type kiwiiUsers<enter>. That shows the contents of that variable:
3. Then I would just try to create the dictionary entry that is missing (causing the error).
Let's copy Adam's picture data, for example.
Enter in the console:
Code:
kiwiiUsers["Крис"]={"profilePicture": "images/phone/kiwii/profilePictues/adpp.webp", "username": "Крис"}
4. Press Enter. If you enter "kiwiiUsers" again, you could see that there is a new user:
5. Exit the console and click once to advance the game one screen forward. Save the game.
That might solve the problem. No guarantees though, as the root causes of the bug (and many other bugs probably) are still there.