2.50 star(s) 47 Votes

Nessos6666

New Member
Jan 27, 2022
7
2
Der Fehler, den Sie erhalten, ist ein Python-Attributfehler (`AttributeError`) in Ihrem Ren'Py-Spiel. Laut der Fehlermeldung scheint es ein Problem mit einem Attribut namens „hide“ in einem Objekt namens „QuestEntry“ zu geben. Um diesen Fehler zu korrigieren, sollten Sie die folgenden Schritte durchführen: 1. **Überprüfen Sie die verwendeten Variablennamen**: Stellen Sie sicher, dass Sie keine Schreibfehler in den Variablennamen oder Attributen haben. Der Fehler tritt auf, weil das Attribut „hide“ nicht im Objekt „QuestEntry“ gefunden wird. Stellen Sie sicher, dass die Verwendung dieses Attributs korrekt ist. 2. **Überprüfen Sie den Code in „Quests.rpy“.
 
  • Like
Reactions: kingjj420haze

master861

Active Member
Nov 4, 2022
935
990
I get this error when load the saved game and click in any map place


Code:
I'm sorry, but an uncaught exception occurred.

While loading <renpy.display.im.Image object (u'images/mainmenu/mainmenu_bg_day.png') at 0x000000001adb7190>:
  File "renpy/common/000statements.rpy", line 609, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "renpy/common/00action_other.rpy", line 578, in __call__
    rv = self.callable(*self.args, **self.kwargs)
  File "game/_script/classes/Map.rpy", line 35, in action
  File "game/_script/classes/Navigation.rpy", line 310, in jump
  File "game/_script/functions/content_completed.rpy", line 6, in all_quests_completed
  File "game/_script/classes/Quests.rpy", line 419, in all
  File "game/_script/classes/Quests.rpy", line 419, in <lambda>
AttributeError: 'QuestEntry' object has no attribute 'hide'

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "renpy/bootstrap.py", line 277, in bootstrap
    renpy.main.main()
  File "renpy/main.py", line 660, in main
    run(restart)
  File "renpy/main.py", line 146, in run
    renpy.execution.run_context(True)
  File "renpy/execution.py", line 938, in run_context
    context.run()
  File "game/_content/city2/park/park.rpyc", line 6, in script
    ��"�y��kr�,����{�rs�D�*�WJ1<˚��:<�U� fC���a    ]1�)�x�����16Ύqn �'�I�IH=�*2��C8�R'���8�Sx��XJr    �L�j���:�8��)�9e�$\�L�2/��+5�[ᴄ0}�W(Ҥ�|M3�|\�;��_�j����y�<���Qy��e�ms��xc��-C����j��l_2�v�I�CA�@�Ġ�Ӻm�@�����7�v2��a���U6}�flVcs����y
  File "game/_content/city2/park/park.rpyc", line 6, in script
    ��"�y��kr�,����{�rs�D�*�WJ1<˚��:<�U� fC���a    ]1�)�x�����16Ύqn �'�I�IH=�*2��C8�R'���8�Sx��XJr    �L�j���:�8��)�9e�$\�L�2/��+5�[ᴄ0}�W(Ҥ�|M3�|\�;��_�j����y�<���Qy��e�ms��xc��-C����j��l_2�v�I�CA�@�Ġ�Ӻm�@�����7�v2��a���U6}�flVcs����y
  File "renpy/ast.py", line 2232, in execute
    self.call("execute")
  File "renpy/ast.py", line 2220, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "renpy/statements.py", line 281, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 609, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "renpy/exports.py", line 3181, in call_screen
    rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
  File "renpy/ui.py", line 299, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "renpy/display/core.py", line 3377, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, pause_modal=pause_modal, **kwargs) # type: ignore
  File "renpy/display/core.py", line 4258, in interact_core
    rv = root_widget.event(ev, x, y, 0)
  File "renpy/display/layout.py", line 1175, in event
    rv = i.event(ev, x - xo, y - yo, cst)
  File "renpy/display/transition.py", line 53, in event
    return self.new_widget.event(ev, x, y, st) # E1101
  File "renpy/display/layout.py", line 1175, in event
    rv = i.event(ev, x - xo, y - yo, cst)
  File "renpy/display/layout.py", line 1175, in event
    rv = i.event(ev, x - xo, y - yo, cst)
  File "renpy/display/screen.py", line 743, in event
    rv = self.child.event(ev, x, y, st)
  File "renpy/display/layout.py", line 1175, in event
    rv = i.event(ev, x - xo, y - yo, cst)
  File "renpy/display/behavior.py", line 1073, in event
    return handle_click(self.clicked)
  File "renpy/display/behavior.py", line 1008, in handle_click
    rv = run(action)
  File "renpy/display/behavior.py", line 322, in run
    new_rv = run(i, *args, **kwargs)
  File "renpy/display/behavior.py", line 329, in run
    return action(*args, **kwargs)
  File "renpy/common/00action_other.rpy", line 578, in __call__
    rv = self.callable(*self.args, **self.kwargs)
  File "game/_script/classes/Map.rpy", line 35, in action
  File "game/_script/classes/Navigation.rpy", line 310, in jump
  File "game/_script/functions/content_completed.rpy", line 6, in all_quests_completed
  File "game/_script/classes/Quests.rpy", line 419, in all
  File "game/_script/classes/Quests.rpy", line 419, in <lambda>
AttributeError: 'QuestEntry' object has no attribute 'hide'

Windows-10-10.0.19041 AMD64
Ren'Py 7.5.3.22090809
My Cute Roommate 2 0.9.22090extra
Fri Oct  6 14:44:47 2023
Frist of all old saves dont work with this version any more.
Second why you get this :
File "game/_content/city2/park/park.rpyc", line 6, in script
��"�y��kr�,����{�rs�D�*�WJ1<˚��:<�U� fC���a ]1�)�x�����16Ύqn <---- this is not normal not sure what your os language is but that is 100% not normal.
3: I postet many times now how to fix all errors only error that needs to fixed by the dev is the load old save, search this tread for my posts and you found how to fix this game with the persistens clear.
 

master861

Active Member
Nov 4, 2022
935
990
Der Fehler, den Sie erhalten, ist ein Python-Attributfehler (`AttributeError`) in Ihrem Ren'Py-Spiel. Laut der Fehlermeldung scheint es ein Problem mit einem Attribut namens „hide“ in einem Objekt namens „QuestEntry“ zu geben. Um diesen Fehler zu korrigieren, sollten Sie die folgenden Schritte durchführen: 1. **Überprüfen Sie die verwendeten Variablennamen**: Stellen Sie sicher, dass Sie keine Schreibfehler in den Variablennamen oder Attributen haben. Der Fehler tritt auf, weil das Attribut „hide“ nicht im Objekt „QuestEntry“ gefunden wird. Stellen Sie sicher, dass die Verwendung dieses Attributs korrekt ist. 2. **Überprüfen Sie den Code in „Quests.rpy“.
You don't have permission to view the spoiler content. Log in or register now.
You know this is are english forum german section is only for german translations of this game.
 

NikNemo

New Member
Aug 16, 2017
5
0
can you read? " , but i played like 3 times with or without mods and i can't do the ring mission because tittygram is bugged. "
and same for me, i started new clear game and have the same problem
I have just found ring. First I had a problem when I came to second photoshoot with Katya with camera allready bought. Then I missed all things related with looking for money. After I spoke with Katya without camera, she told me she will wait, and then talking with photograph opened this path. Problem is that you can buy camera legally before this search for money with income from webcam.
 

Fcz1

Newbie
Oct 22, 2018
47
16
Ivan keep talking he's busy so we have to meet him tomorrow and when I'm talk to him the next day he's repeat to say that he's busy again.
Any solution with this loop?
 

szerepelek

Newbie
Sep 11, 2017
27
4
Is there anyway to skip fucking the maid mini game? You move it twice and you need to wait 5 minutes before you can move it again. It's awful
 

mixa007

Member
Jan 15, 2022
446
624
I wonder if the new update will be released before the end of this year or it turns out that only two updates will actually be released this year.
 

enano79

Newbie
Aug 12, 2019
47
5
Frist of all old saves dont work with this version any more.
Second why you get this :
File "game/_content/city2/park/park.rpyc", line 6, in script
��"�y��kr�,����{�rs�D�*�WJ1<˚��:<�U� fC���a ]1�)�x�����16Ύqn <---- this is not normal not sure what your os language is but that is 100% not normal.
3: I postet many times now how to fix all errors only error that needs to fixed by the dev is the load old save, search this tread for my posts and you found how to fix this game with the persistens clear.
My windows language is Spanish.
OK I will try to find how fix it! in the forum thread
 

DrSoong

Member
Donor
Jan 8, 2022
491
932
Frist of all old saves dont work with this version any more.
Second why you get this :
File "game/_content/city2/park/park.rpyc", line 6, in script
��"�y��kr�,����{�rs�D�*�WJ1<˚��:<�U� fC���a ]1�)�x�����16Ύqn <---- this is not normal not sure what your os language is but that is 100% not normal.
3: I postet many times now how to fix all errors only error that needs to fixed by the dev is the load old save, search this tread for my posts and you found how to fix this game with the persistens clear.
The
Code:
 ��"�y��kr�,����{�rs�D�*�WJ1<˚��:<�U� fC���a    ]1�)�x�����16Ύqn
is cause the file (.rpyc) is encrypted, so the Hex-data is displayed. Plaing with encrypted game (like using UnRen and playing that version) gives you the actual code where the error is produced.
 

Soxiyof

Newbie
Aug 8, 2020
33
15
Hi,

I'd like to know if v0.9 includes delivery girl story and also story about Lida quest against husband (starting right after changing room scene.
The tips menu is empty and I dont see on the map another place to go in the evening to meet delivery girl.
Same for Lida quest against her husband
 

JJJ4544

Member
Nov 26, 2017
468
48
I try the quest of the ring, but the maid say , I didnt see it. What i do wrong? or mabe the game is have a bug.
 

Rakan

Member
Jul 19, 2017
230
228
Y'know what I absolutely love, one that is common all throughout almost every indie adult games that are American-made?

That almost all of them have a freaking callback to Big Brother whenever Max or Eric's models are used. Usually the callback is about being sent to military school lmao!

1697991466061.png
 

thegrindisreal

Active Member
Dec 19, 2018
781
1,423
Y'know what I absolutely love, one that is common all throughout almost every indie adult games that are American-made?

That almost all of them have a freaking callback to Big Brother whenever Max or Eric's models are used. Usually the callback is about being sent to military school lmao!

View attachment 3025432
That's from the tv show Sopranos. Tony threatened his son, with sending him to a military school if he doesn't get his shit together. The kid literally had such an awesome panic attack, he lost consciousness from it. The cute uniform was the trigger btw. Great episode.
 
Last edited:
2.50 star(s) 47 Votes