K40sen
Newbie
- Jul 1, 2024
- 39
- 171
- 47
Lol, I picked up this game after seeing the Marc and Nick scenes with Myriam at the pool and afterwards, it was so hot
I like Mark I mostly only play for him. He's isn't that bad if you play the Myriam Dom path / Mark sub path. Technically he is her son too but pateron / incestGot some sand in your vagina there? He's a a turd that won't flush who keeps appearing again and again and again. Myriam is not related to him, he's Antony's son. I can't see why you don't have the option not to fight for his custody and then he could be out of the story. I can't think of a reason why anyone would want to keep such a rude, obnoxious child.
That's what I love about this game. It's each to there own kinks. All are welcome and all are catered for. It just disappointing that you seem to be be able to get rid of everyone else except Marc. To be fair I have never played with incest on so perhaps I'm seeing the relationship differently but Katherine is such a sweet, kind, normal girl. You could live with her being around no matter what you choose. Marc is just an awful kid. To me he's a young Antony in the making. Therefore if I get rid of Antony out of my life, I want to get rid of Marc too.I like Mark I mostly only play for him. He's isn't that bad if you play the Myriam Dom path / Mark sub path. Technically he is her son too but pateron / incest
Again, if you make the right choices, Marc would damn well be a virgin saint. Early on, Myriam can decide how she should proceed with Marc's attitude and behavior as it pertains to sex. If you go into his room while jerking off to her & Anthony's sex tape, there's an opportunity to slap him when he gets out of line, IIRC. There's another time shortly thereafter in the laundry room where you can control the situation. As I said, make the right choices and dealing with him is bearable but cuts out a Lot of sex scenes, which imo, are some of the more consistent & hot scenes of the game. Your Biggest choice comes after the chauffeur brings Mi home. Make Marc do the Right thing & it pretty much Kills any sexual interaction for the rest of the game.That's what I love about this game. It's each to there own kinks. All are welcome and all are catered for. It just disappointing that you seem to be be able to get rid of everyone else except Marc. To be fair I have never played with incest on so perhaps I'm seeing the relationship differently but Katherine is such a sweet, kind, normal girl. You could live with her being around no matter what you choose. Marc is just an awful kid. To me he's a young Antony in the making. Therefore if I get rid of Antony out of my life, I want to get rid of Marc too.
That's the idea, yes, that Marc has been influenced by the example of his father, but he can be managed and get straighten to the right path as well, depending on choices made, very early in game during the movie night Myriam can put him back in place (as a few more opportunities later on), avoiding any naughty encounter with him as well as having him more like a normal teenager.That's what I love about this game. It's each to there own kinks. All are welcome and all are catered for. It just disappointing that you seem to be be able to get rid of everyone else except Marc. To be fair I have never played with incest on so perhaps I'm seeing the relationship differently but Katherine is such a sweet, kind, normal girl. You could live with her being around no matter what you choose. Marc is just an awful kid. To me he's a young Antony in the making. Therefore if I get rid of Antony out of my life, I want to get rid of Marc too.
Yes, nearly everything (naughty) is avoidable in the game depending on choices made, but some choices will lock you on some specific paths as well and have unforeseen consequences. Most of the choices are fairly straight forward, but some are actually a bit sneaky and some can seem random (though they are very few of those), I tried to give a range of choices in the game to let the player move the story in the way he prefers (well, with the choices offered of course), and some other to keep the player on his toes as some come with consequences and for the few random ones, I put those to give somewhat of a sense of life into the game, as life can sometime be random, as well as to reward exploration.Again, if you make the right choices, Marc would damn well be a virgin saint. Early on, Myriam can decide how she should proceed with Marc's attitude and behavior as it pertains to sex. If you go into his room while jerking off to her & Anthony's sex tape, there's an opportunity to slap him when he gets out of line, IIRC. There's another time shortly thereafter in the laundry room where you can control the situation. As I said, make the right choices and dealing with him is bearable but cuts out a Lot of sex scenes, which imo, are some of the more consistent & hot scenes of the game. Your Biggest choice comes after the chauffeur brings Mi home. Make Marc do the Right thing & it pretty much Kills any sexual interaction for the rest of the game.
Zorlun has Told everyone, Time & Again, that YOUR choices determine how the Rest of the story goes and this is for Every character Except Katherine, who is designed to be Myriam's anchor through the madness. You can't blame a bullet for injuring your foot if you used the gun to shoot yourself with it.
My Man! You're Definitely my favorite Dev.That's the idea, yes, that Marc has been influenced by the example of his father, but he can be managed and get straighten to the right path as well, depending on choices made, very early in game during the movie night Myriam can put him back in place (as a few more opportunities later on), avoiding any naughty encounter with him as well as having him more like a normal teenager.
Yes, nearly everything (naughty) is avoidable in the game depending on choices made, but some choices will lock you on some specific paths as well and have unforeseen consequences. Most of the choices are fairly straight forward, but some are actually a bit sneaky and some can seem random (though they are very few of those), I tried to give a range of choices in the game to let the player move the story in the way he prefers (well, with the choices offered of course), and some other to keep the player on his toes as some come with consequences and for the few random ones, I put those to give somewhat of a sense of life into the game, as life can sometime be random, as well as to reward exploration.
Though I do realize that as much as I had a vision in mind when doing all this, not everything is perfect, I experimented a lot (and still am) to see how things would evolve, so every comments and criticisms are welcome, good or bad (well, of course I prefer good ones, but bad ones helped me make some changes for the better as well), it'll help straighten things up in my mind for the next project.
Thank you as always for all the love and support for the game, right now I'm hard at work on the start of the ending chapter, where some of the choices made during the game might have some consequences as well as some of the stats not used too much as well... (but no spoilers). ^^
I bookmarked your post before going on my vacations and only go to it now as I'm working on the next update, it worked like a charm, the affection menu is fixed, a big big thank you for the help and my apologies for the delay in answer. ^^Yeah I saw this. It's crashing because the number of people in the affection list is no longer evenly divisible by 8.
Easiest way to fix:
Deletegame/notification.rpyc(it will rebuild automatically)
Then editgame/notification.rpyin any text editor. On line 2, add "import math" after "init python" like this:
Now find the function named "screen affection_screen():" ... we're going to change the way the "number_col" variable is built with the math library's ceiling function. From this:Python:init python: import math #positiveColor add the "good" color to increased stats (green) # rest of file goes on as before
to this:Python:$number_col = len(discoveries["Characters"])/length_col
AddingPython:$number_col = math.ceil(len(discoveries["Characters"])/length_col)math.ceil(before the call to the length function, and)after. Don't forget that closing parenthesis.
Save the file and run the game. It will automatically rebuild the rpyc compiled version of the file, and the affection menu will now work.
You can always find a link to the mods (I'm aware of) on my Discord server, follow the long ass link in my signature and you'll find the link to the mod you're searching (multi-mod from Bibifoc).Where can i get latest gallery mod
You can use Bibifoc's mod found in this post:Where can i get latest gallery mod
That's what history is for, and whether you like it or not is a matter of tastethis is so absurd lol, at first i feel sorry for her, but as the story progresses the story gets weirder![]()
BibifocCode:I'm sorry, but an uncaught exception occurred. While running game code: File "game/gallery.rpy", line 531, in execute screen gallery: File "game/gallery.rpy", line 531, in execute screen gallery: File "game/gallery.rpy", line 556, in execute frame: File "game/gallery.rpy", line 559, in execute hbox: File "game/gallery.rpy", line 563, in execute imagebutton: Exception: Imagebutton does not have a idle image. (auto='bibifoc/gui/button/return_%s.png'). -- Full Traceback ------------------------------------------------------------ Full traceback: File "renpy/common/_layout/screen_main_menu.rpym", line 28, in script python hide: File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\ast.py", line 834, in execute renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store) File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\python.py", line 1187, in py_exec_bytecode exec(bytecode, globals, locals) File "renpy/common/_layout/screen_main_menu.rpym", line 28, in <module> python hide: File "renpy/common/_layout/screen_main_menu.rpym", line 35, in _execute_python_hide ui.interact() File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\ui.py", line 301, in interact rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs) File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\display\core.py", line 2218, 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 "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\display\core.py", line 2748, in interact_core root_widget.visit_all(lambda d : d.per_interact()) File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\display\displayable.py", line 434, in visit_all d.visit_all(callback, seen) File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\display\displayable.py", line 434, in visit_all d.visit_all(callback, seen) File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\display\displayable.py", line 434, in visit_all d.visit_all(callback, seen) [Previous line repeated 1 more time] File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\display\screen.py", line 480, in visit_all callback(self) File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\display\core.py", line 2748, in <lambda> root_widget.visit_all(lambda d : d.per_interact()) File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\display\screen.py", line 491, in per_interact self.update() File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\display\screen.py", line 700, in update self.screen.function(**self.scope) File "game/gallery.rpy", line 531, in execute screen gallery: File "game/gallery.rpy", line 531, in execute screen gallery: File "game/gallery.rpy", line 556, in execute frame: File "game/gallery.rpy", line 559, in execute hbox: File "game/gallery.rpy", line 563, in execute imagebutton: File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\ui.py", line 975, in _imagebutton idle = choice(idle, idle_image, "idle", required=True) File "C:\Users\Hari Om Shahi\Downloads\ProjectMyriamLifeandExplorations-ch5.12p-pc\ProjectMyriamLifeandExplorations-ch5.12+p-pc\renpy\ui.py", line 969, in choice raise Exception("Imagebutton does not have a %s image. (auto=%r)." % (name, auto)) Exception: Imagebutton does not have a idle image. (auto='bibifoc/gui/button/return_%s.png'). Windows-10-10.0.26100 AMD64 Ren'Py 8.3.7.25031702 Project Myriam Life and Explorations ch5.12+p Tue Jun 10 22:50:20 2025
Updated.Updated Android port. Nothing too fancy but let me know if you have any issues.
Version: 5.12p + WT by JokerLeader
Appreciate my porting? Leave a Tip! You're supporting my efforts, paying for storage, and encouraging more ports!
¯\_(ツ)_/¯You must be registered to see the linksORYou must be registered to see the links
You don't have permission to view the spoiler content. Log in or register now.
This unofficial port/version is not released by the developer, download at your own risk.
PLEASE don't reply, or @ me, or DM me for updates. I always update my ports, YES I ALREADY KNOW ABOUT THE UPDATE.
If you ping me for updates, I will mark you account as ignored.
You must be registered to see the links
MEGA
Size 1253 MB
Updates are faster onYou must be registered to see the links.
Game Developers: Want to talk about an official Android version for your game? Come join my Discord.
I don't think it's updatedYou can use Bibifoc's mod found in this post:
https://f95zone.to/threads/project-myriam-life-and-explorations-ch-5-12-p-zorlun.66806/post-6514366
Read the post's Gallery section and follow the instructions.
Download the single zip file gallery.XX.zip and install.
If it's version .50, then it's the latest. I used it when it first became available and there's no problemss with it.Version numbers say it is.