CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

El_Loco

Member
Nov 15, 2019
354
354
It was the line "KeyError" and then some unicode symbols; and the previous line - it's the actual line that generated the exception.

I don't think it's about languages; probably there is some bug in their phone functions. I seem to remember, I tried to set my phone profile name "Otto", but soon I discovered it was "MC". So I don't know how to correct the bug. It's only clear that the program tries to address that variable and there's no "dictionary entry" with that key. If I were you I might go barbaric and just try to comment out the parts of the code that cause the error. :p
I have heard a lot about bugs with the phone and now I have encountered something similar myself. But I don't understand what you mean by the words "try to comment out the parts of the code". Sorry, maybe it's a language barrier.
 

assman1337

Well-Known Member
Mar 10, 2018
1,462
2,050
I've figured it out it depends on how you treat Lauren in the previous Act's I managed to nail down the correct choices in my updated guide

[v12.0.2] Walkthrough "Bang Everyone" Guide (Updated)
What this guide achieves:
  • Friend's with benefits relationships with all the characters
  • Lauren will not be angry about you having sex with Aubrey
  • Emily will go with you to Europe
  • Easy murder mystery game guide
  • Unlock nearly every sex scene in one playthrough with guidance on multiple paths and where to save
i cant reply to penelope as on page 13
since she didnt message me.....and later i dont get the option to invite her to the dance.... its greyed out.... ???
 

juanito

Active Member
Jun 19, 2017
803
564
I haven't played in a very long time since I haven't not seen Aubrey mentioned in the change log. Has there been any new content for her lately that has passed me unawares?
 

gamingdevil800

Monke
Donor
Aug 4, 2020
1,552
8,407
i cant reply to penelope as on page 13
since she didnt message me.....and later i dont get the option to invite her to the dance.... its greyed out.... ???
That's a mistake I've fixed it now, that refers to the Kiwi message Emily posts about you being back together. You click the reply on kiwi then respond by saying no we're not. Penelope has never been an option for me at homecoming and kinda a pointless choice anyway
 

m0us3r

Active Member
Nov 28, 2020
503
1,488
I have heard a lot about bugs with the phone and now I have encountered something similar myself. But I don't understand what you mean by the words "try to comment out the parts of the code". Sorry, maybe it's a language barrier.
I mean search in those .rpy files for the lines of code which cause bugs, and turn off those lines by converting them to comments.

(To disable one or more lines of code from a program temporarily by enclosing them within a comment statement)

(в программировании - поставить знаки комментария в начале и конце секции кода или в начале каждой строки для блокировки их компиляции или интерпретации. Обычно этот приём используется при отладке программы)

Code:
 code()  # The part of line after "sharp" symbol
          # is a comment in Ren'Py / Python

"""
Another way to make comments
in Ren'Py / Python
is to put them into quotes
"""
 

FookU2

Engaged Member
Jan 23, 2018
3,221
2,412
I've followed the walkthrough exactly, and Josh isn't where the walkthrough claims he is at. I see Riley & Chloe, but the walkthrough says to talk to Josh first, and he isn't there. So, from where it says Josh should be, I try all directions and he is nowhere, but Chloe and Riley are right around the corner.


EDIT: John also isn't in the utility room after killing Riley. Emily also isn't anywhere at all, so just skip those 3 people and you'll finish the game.
Not sure if they were supposed to be there then were omitted or if the walkthrough is just wrong, but regardless, hopefully this will save some frustrations. lol
 
Last edited:

indio68

Engaged Member
Sep 26, 2020
3,874
3,222
so what's in this update?? i got 1 not many days ago that was very good with the Murder game on the ferryboat...no yesterday popped this updatre but seems not working...same content as previous..any tip?
 

indio68

Engaged Member
Sep 26, 2020
3,874
3,222
No one answered my problem.
I downloaded the game version 12.0.2 and reached the scene of Rile's agreement with Mc To avenge that charli idiot and I downloaded Patch 12.1.1 but the same scene remained the finish line so far.
same...seems there is no new things...i loaded the save and arriving in the caffe i got the same windows message to save as previous update..what's the problem?
 

El_Loco

Member
Nov 15, 2019
354
354
I mean search in those .rpy files for the lines of code which cause bugs, and turn off those lines by converting them to comments.

(To disable one or more lines of code from a program temporarily by enclosing them within a comment statement)

(в программировании - поставить знаки комментария в начале и конце секции кода или в начале каждой строки для блокировки их компиляции или интерпретации. Обычно этот приём используется при отладке программы)

Code:
 code()  # The part of line after "sharp" symbol
          # is a comment in Ren'Py / Python

"""
Another way to make comments
in Ren'Py / Python
is to put them into quotes
"""
Oh, that... I commented out lines 208 and 569 with "#", they turned gray, but this did not fix the error.
 

m0us3r

Active Member
Nov 28, 2020
503
1,488
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:

kiwii1.png

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:

kiwii2.png

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.
 
  • Like
Reactions: El_Loco
3.20 star(s) 198 Votes