Diconica

Well-Known Member
Apr 25, 2020
1,099
1,145
Error on a fuck date...

While running game code:
File "game/script.rpy", line 262, in script call
$ picked_option.call_action()
File "game/general_actions/location_actions/business_actions.rpy", line 148, in script call
call advance_time from _call_advance_time_5
File "game/script.rpy", line 415, in script call
$ crisis.call_action()
File "game/game_roles/role_affair.rpy", line 140, in script
$ the_person.clear_situational_slut("Date", 20, "There's no reason to hold back, he's here to fuck me!")
File "game/game_roles/role_affair.rpy", line 140, in <module>
$ the_person.clear_situational_slut("Date", 20, "There's no reason to hold back, he's here to fuck me!")
TypeError: clear_situational_slut() takes exactly 2 arguments (4 given)

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

Full traceback:
File "game/script.rpy", line 262, in script call
$ picked_option.call_action()
File "game/general_actions/location_actions/business_actions.rpy", line 148, in script call
call advance_time from _call_advance_time_5
File "game/script.rpy", line 415, in script call
$ crisis.call_action()
File "game/game_roles/role_affair.rpy", line 140, in script
$ the_person.clear_situational_slut("Date", 20, "There's no reason to hold back, he's here to fuck me!")
File "renpy/ast.py", line 923, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "renpy/python.py", line 2235, in py_exec_bytecode
exec(bytecode, globals, locals)
File "game/game_roles/role_affair.rpy", line 140, in <module>
$ the_person.clear_situational_slut("Date", 20, "There's no reason to hold back, he's here to fuck me!")
TypeError: clear_situational_slut() takes exactly 2 arguments (4 given)
change line 140 in game/game_roles/role_affair.rpy to this.
$ the_person.clear_situational_slut("Date")
 
  • Like
Reactions: eldoen

kyo760721

New Member
Jun 10, 2017
13
2
I still can't meet my mom's boss, I tried this command:
the_person.event_triggers_dict["mom_promotion_boss_phase_one"] = True
There is no follow-up other than "Ask about her today" with my mom...
Am I missing something or is there any remedy?
 

Diconica

Well-Known Member
Apr 25, 2020
1,099
1,145
I still can't meet my mom's boss, I tried this command:
the_person.event_triggers_dict["mom_promotion_boss_phase_one"] = True
There is no follow-up other than "Ask about her today" with my mom...
Am I missing something or is there any remedy?
Your mom comes to you first time.
Tell her to "Tell her take advantage of her womanly charms" give as slutty as an outfit as you can.
Next time she comes to you, "be friendly". Again sluttiest outfit you can.
I use this time to give her an outfit in both cases that has no panties. It makes sex move along faster.
She will come back to you some days after that and tell you about her boss.secretary replacement.
You can see what it has at line 704 of role_mather_work.rpy
If you tell her, "I will take care of it" then you can go see the boss.
 
  • Like
Reactions: kyo760721

Diconica

Well-Known Member
Apr 25, 2020
1,099
1,145
We need trade unions in this game.
There are a lot of things this game needs.
A clean and well written base code being the most important.
If you really want to improve the game move away from renpy to an engine more suited for this type of stuff.
Otherwise it is going to get to a point were it won't be fixable.
 
  • Like
Reactions: Necronlord3

Naturalrice

Newbie
May 27, 2017
49
42
Apparently there's an update today, but the title only says it added "duties". Was that it?
Don't know the rules here regarding posting patreon stuff, but the summary is that most of the business side has been divided into smaller "duties" that is modified by modifiers (sluttiness and "work experience")

More organizational policies relating to work that adds flavor to how you run your business, mostly.
 
  • Like
Reactions: Draculesti

dalzomo

Active Member
Aug 7, 2016
883
715
Don't know the rules here regarding posting patreon stuff, but the summary is that most of the business side has been divided into smaller "duties" that is modified by modifiers (sluttiness and "work experience")

More organizational policies relating to work that adds flavor to how you run your business, mostly.
Here, as in on f95? There are no rules about that. Vren doesn't have any problem with news post sharing either. The beta testers don't usually share the x.0 version because it's typically even more buggy than the "final" ones and the final version is free in only a week anyway, but there's nothing stopping some tryhard from trying to buy likes so you'll occasionally see that here too

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

Naturalrice

Newbie
May 27, 2017
49
42
I know,but there is no v0.50 here yet.
Come on, man. The answer is literally in that same post.

Here, as in on f95? There are no rules about that. Vren doesn't have any problem with news post sharing either. The beta testers don't usually share the x.0 version because it's typically even more buggy than the "final" ones and the final version is free in only a week anyway, but there's nothing stopping some tryhard from trying to buy likes so you'll occasionally see that here too

Literally takes more effort to come back to this page with a new reply.
 

Draculesti

Newbie
May 20, 2019
65
41
There are a lot of things this game needs.
A clean and well written base code being the most important.
If you really want to improve the game move away from renpy to an engine more suited for this type of stuff.
Otherwise it is going to get to a point were it won't be fixable.
It is after all python, i think it is doable.

I agree that the game has changed very much and that the code has not been restructured as you want it to be to build on it. We have seens duplicate code, code that works against other code, code that works around other code and so on. But this is not a problem of python or renpy it is a problem of modularity in code and cleaning the code if you change something.
I have seens strange things programmed in python that were really experiences where i would say, why?
I have seen python who had inbeded pearl scripts or other scripts in other languages. But over the last years nearly everyone changed it to python only or python based.
To stop this advertising of python lets come back to the game.

I' am not a betatester, but for me the changes sound like a nightmare to implement. In my opinion to implement this, without running in problems with code that works around or stand in opposition to other code a great amount of files must have been changed. If he had done this correctly it should have removed some of the older problems.
So i see two possible outcomes.
1) Everything works fine and he has cleaned his code and i will be deeply impressed after what he has done the last times.
2) Great parts are not working as intended and we see more code that is conflicting and questionable.

I will wait for now with judgement and hope for Option 1.
 

toolkitxx

Well-Known Member
Modder
Donor
Game Developer
May 3, 2017
1,473
1,789
I agree that the game has changed very much and that the code has not been restructured as you want it to be to build on it. We have seens duplicate code, code that works against other code, code that works around other code and so on. But this is not a problem of python or renpy it is a problem of modularity in code and cleaning the code if you change something.
The pro term you are looking for is: software architecture. Very old school, condemned by most younger devs as 'not relevant anymore' ;)
 
  • Like
Reactions: uiopuiop3112
Oct 14, 2020
111
126
I am a fan of the systemic gameplay. If I wanted "click buttons, read 500 lines of 'story', get lewds", there are plenty of games for that. Or honestly, just go to pornhub for that.
 
3.40 star(s) 127 Votes