Warphorror

Active Member
Jan 2, 2018
813
1,057
405
private dance error:
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 259, in script call
    call talk_person(picked_option) from _call_talk_person
  File "game/script.rpy", line 376, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_stripper.rpy", line 11, in script
    if the_person.has_role(cousing_role):
  File "game/game_roles/role_stripper.rpy", line 11, in <module>
    if the_person.has_role(cousing_role):
NameError: name 'cousing_role' is not defined

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

Full traceback:
  File "game/script.rpy", line 259, in script call
    call talk_person(picked_option) from _call_talk_person
  File "game/script.rpy", line 376, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_stripper.rpy", line 11, in script
    if the_person.has_role(cousing_role):
  File "renpy/ast.py", line 1893, in execute
    if renpy.python.py_eval(condition):
  File "renpy/python.py", line 2266, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "renpy/python.py", line 2259, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "game/game_roles/role_stripper.rpy", line 11, in <module>
    if the_person.has_role(cousing_role):
NameError: name 'cousing_role' is not defined
Go to line 11 in "game/game_roles/role_stripper.rpy", replace cousing_role by cousin_role . For safety do a search and replace to find any other same occurence.
 

boobthief

Member
May 25, 2017
490
1,249
390
Whenever I try to hire someone new:
You should be able to workaround by deactivating the business policy for the sex stats increase.

Or backup your existing Business.rpy and copy the one from attached zip to dir
game\major_game_classes\business_related

Fix was missing element in array in Business.rpy:855
Python:
candidate_dict["sex_array"] = [renpy.random.randint(1,stat_cap),renpy.random.randint(1,stat_cap),renpy.random.randint(1,stat_cap),renpy.random.randint(1,stat_cap)]
HTH
 

Karl

New Member
May 1, 2017
1
1
316
You should be able to workaround by deactivating the business policy for the sex stats increase.

Or backup your existing Business.rpy and copy the one from attached zip to dir
game\major_game_classes\business_related

Fix was missing element in array in Business.rpy:855
Python:
candidate_dict["sex_array"] = [renpy.random.randint(1,stat_cap),renpy.random.randint(1,stat_cap),renpy.random.randint(1,stat_cap),renpy.random.randint(1,stat_cap)]
HTH
Adding that fourth ,renpy.random.randint(1,stat_cap) to the end of the line seems to have fixed my issues. thanks
 
  • Like
Reactions: boobthief

S.Gargant

New Member
Sep 3, 2019
4
4
109
random currently broken, if try to hire someone new without any recrutment criteria, you find only 28-29 y.o. girls
 

boobthief

Member
May 25, 2017
490
1,249
390
has error when try to hire someone yonger than 20
You don't have permission to view the spoiler content. Log in or register now.
This is more of a game logic issue... different ways to solve...

Suggested fix is removing + 10 to age if stat improvement policy active so you don't give the RNG impossible parameters in Business.rpy:850
Python:
# candidate_dict["age_floor"] = candidate_dict.get("age_floor", 18) + 10
candidate_dict["age_floor"] = candidate_dict.get("age_floor", 18)
Or backup your existing Business.rpy and copy the one from attached zip to dir
game\major_game_classes\business_related
 

Leafkiller

Member
Sep 13, 2018
455
238
210
Last game had really had hot girls(yes the graphics were somewhat worse) and 1/3 were related(a plus). Put a picture of a girl that is higher than a 6/10.
 

Trash_Panda

Member
Game Developer
Jan 9, 2019
481
2,742
352
I havent tried the game yet but i was wondering. Since game seems to have some kind of harem collecting, can you make girls sex with other people?
 

Chameleo

Member
May 20, 2017
404
412
292
You should be able to workaround by deactivating the business policy for the sex stats increase.

Or backup your existing Business.rpy and copy the one from attached zip to dir
game\major_game_classes\business_related

Fix was missing element in array in Business.rpy:855
Python:
candidate_dict["sex_array"] = [renpy.random.randint(1,stat_cap),renpy.random.randint(1,stat_cap),renpy.random.randint(1,stat_cap),renpy.random.randint(1,stat_cap)]
HTH
Thanks, this helped
 
  • Like
Reactions: boobthief

Perdurabo

Member
May 4, 2017
133
94
226
Did some tests.

There's errors with private dances, as well as with the sex skill recruitment policy and the age recruitment policies. Undefined variables.
 

whizzeee

Member
Mar 5, 2020
363
414
262
hey how extreme is the mind control? always heard good things about this game but mind control always kind of turns me off. do the women go zombie mode the minute it happens?
 

coretex

Active Member
Jun 15, 2017
664
585
287
Mind control isnt that strong necessarily.. yes you can very well convince them to go along with your urges.. but i wouldnt call it zombie mode. You do have to progress things if you dont hack it and jack up stats or w/e.
 
3.40 star(s) 127 Votes