MailMeister

Member
May 1, 2017
133
260
Anyone got this error when starting the game?

Code:
I'm sorry, but an uncaught exception occurred.
After initialization, but before game start.
  File "renpy/common/00voice.rpy", line 360, in voice_interact
    if _menu:
NameError: global name '_menu' is not defined

You don't have permission to view the spoiler content. Log in or register now.

Edit: never mind. I found the cause. It's the unren.bat file that I ran that caused it. I'll have to figure out, again, how to enable the developer mode, manually.
The problem is the dev mode, the game has a bug in the code that just gets ignored by renpy without the dev mode active. Renpy will throw the bug report straight at you when you activate the dev mode (and killing the process).

I suggest only activating the console (manually) if you really need it and using the dir() command to search for the variables
 
Last edited:

MailMeister

Member
May 1, 2017
133
260
I think there's a text file where you change 0 to 1, and that enables console, but I forget which text file...
Not a text file:
[game folder]/renpy/common/00console.rpy
open it with a text editor (preferably notepad++ cause why not?) search for "config.console = False" and change "False" to "True" (without the "" obviously)
 

Led

Active Member
Jul 16, 2017
743
597
same for me, can't lauch game if I enable console with Unren.bat 0.5..... Solution ?
Delete the game folder entirely, unzip the .zip file, which you downloaded, again to recreate the game folder. Then go into the "renpy/common" folder and open up the file 00console.rpy with Notepad++.

Inside this file change the following line:
# If true, the console is enabled despite config.developer being False.
config.console = False

TO

# If true, the console is enabled despite config.developer being False.
config.console = True

I didn't manage to enable the developer console. But if you know the codes you only need the config console.

Codes:
v_exp=10 (experience points)
v_sk_mental_shield=100 (mental shield)
v_sk_stun_charm=100 (stun spell)
v_sk_dark_storm=100 (dark storm)
v_sk_dark_theft=100 (dark theft)
v_sk_dark_ball=100 (dark ball)
v_sk_death_hand=100 (death hand)
v_sk_hypnosis=0 (hypnosis skill)
v_my_weight_max=100 (max backpack items)
v_my_health_max=1000 (max health)
v_my_health=1000 (health)
v_my_energy_max=1000 (energy max)
v_my_energy=1000 (energy)
v_home_food=1000 (food storage at home)
v_home_batteries=100 (battery storage at home)
v_home_chocolate=100 (chocolate storage at home)
v_home_wine=100 (wine storage at home)
v_in_food=0 (food in backpack)
v_inv_batteries=0 (batteries in backpack)
v_inv_chocolate=0 (chocolate in backpack)
v_inv_wine=0 (wine in backpack)
v_inv_gold (gold)
v_m_sub=100 (mom submission)
v_s_sub=100 (sister submission)
v_j_sub=100 (Jessica submission)
v_l_sub=100 (Lisa submission)
v_ch_sub=100 (Cherry submission)
v_m_l=7 (mom corruption)
v_s_l=5 (sister corruption)
v_j_l=0 (Jessica corruption)
v_l_l=1 (Lisa corruption)
v_ch_l=1 (Cherry corruption)
 

M3H1

Newbie
Jun 7, 2017
63
76
UnRen.bat fixes:

1st Fix:
File "renpy/common/00voice.rpy", line 360, in voice_interact

if _menu: changed to if menu: [remove the underscore before the word menu]

2nd fix:
The label _call_v_dtm_ch_83 is defined twice, at
File "game/31.rpy", line 25 and
File "game/31.rpy", line 31.

left line 25 as is:

call v_dtm_ch from _call_v_dtm_ch_83

commented out line 31 with an octothorp [the # symbol]

#call v_dtm_ch from _call_v_dtm_ch_83

I've noticed no issues with these changes. But I'm not a programmer, so use at your own risk.

Happy New Year!

Hat tip to @muttdoggy for post
 

Thierry29

Member
Jun 3, 2017
128
59
@Led @M3H1 both thank's


but is that logic ?
config.console = True

config.console_history_size = 100
config.console_commands = { } nothing here ? not Maj 0 ?

that don't work in game...
 
Last edited:
  • Like
Reactions: Led

tsunku

Engaged Member
Nov 6, 2017
2,889
1,530
Anyone got this error when starting the game?

Code:
I'm sorry, but an uncaught exception occurred.
After initialization, but before game start.
  File "renpy/common/00voice.rpy", line 360, in voice_interact
    if _menu:
NameError: global name '_menu' is not defined

You don't have permission to view the spoiler content. Log in or register now.

Edit: never mind. I found the cause. It's the unren.bat file that I ran that caused it. I'll have to figure out, again, how to enable the developer mode, manually.
i usually use this to do it,
i have not tried it with .8b yet tho, on .8a non-patron it crashed constantly with or without it, but with the patron version worked fine. i dunno if he does something different with non patron or not.
 

JohnnyMarco

Member
Jun 18, 2017
124
200
My 1st post in f95zone...

So, regarding this game, it has a lot of potential, very good mechanics, I only think the dialogues are a little lacking, like his mother and siser shouldn't be so easy and he needed to play tough to get what he wants, perhaps some more desperating circunstances for them to understand how dependent they are on him, this would make for a better storytelling, it should be harder to subdue them... like with the library girl and that blond bitch who tries to steal you, I'm looking forward for those two, mother rand sister look a little fake, like if they are just pretending to resist him...

That witch though is just a prostitute, if all you have to do is just pay her this won't be fun, perhaps he should find a way to trick her int the future, or she could get in trouble and need him for something so he gets the upper hand.

Anyway, I'm into domination, when the girl just obeys you with little resistence it's not fun.
 
  • Like
Reactions: PerverTeacher

Led

Active Member
Jul 16, 2017
743
597
i usually use this to do it,
i have not tried it with .8b yet tho, on .8a non-patron it crashed constantly with or without it, but with the patron version worked fine. i dunno if he does something different with non patron or not.
Thanks, but I already tried that one, also. Same result as the game crashes after you copied in the .rpy file.
UnRen.bat fixes:

1st Fix:
File "renpy/common/00voice.rpy", line 360, in voice_interact

if _menu: changed to if menu: [remove the underscore before the word menu]

2nd fix:
The label _call_v_dtm_ch_83 is defined twice, at
File "game/31.rpy", line 25 and
File "game/31.rpy", line 31.

left line 25 as is:

call v_dtm_ch from _call_v_dtm_ch_83

commented out line 31 with an octothorp [the # symbol]

#call v_dtm_ch from _call_v_dtm_ch_83

I've noticed no issues with these changes. But I'm not a programmer, so use at your own risk.

Happy New Year!

Hat tip to @muttdoggy for post
Must be me, but I can't find the 31.rpy file. It's not in the game folder or any other folder. Still, I get the error saying that the label _call_v_dtm_ch_83 is defined twice in the file 31.rpyc... :frown:
 

Led

Active Member
Jul 16, 2017
743
597
Lust and Power v.0.8.b changelog:

- added +3 new scenes for sister
- added a map of the outside instead of text menu choice
- bad grammer was corrected for some more previous scenes
"bad grammer"?? That's funny, actually. x'D
 

Led

Active Member
Jul 16, 2017
743
597
i usually use this to do it,
i have not tried it with .8b yet tho, on .8a non-patron it crashed constantly with or without it, but with the patron version worked fine. i dunno if he does something different with non patron or not.
Didn't work, either. I tried that right after unren.bat failed. But thanks.
 

Tyrranus

Well-Known Member
May 4, 2017
1,047
1,076
then it's time to move away from a boy's computer and up to a man's computer, get a desktop!
have one, just unable to use it much atm thanks to a medical issue Ive been "enjoying" since just before xmas
 
3.00 star(s) 78 Votes