Ok, I probably won't go tracing down this bug if it's isolated to Android. I don't have an Android device to test the game, which makes troubleshooting quite difficult But I hope you were able to hit ignore on the error and progress the game!Using android port
Good point, I'll look at adding it to the MC tasks to train and increase the MC's combat skill...Why mc can't use gun training place for himself ??
Lol. I didn't expected this reply. But i like it!!Good point, I'll look at adding it to the MC tasks to train and increase the MC's combat skill...
Nah no reason to "space" it. Dev could just add a couple of lines of dialogue that states he kicked down doors... etc. There is no reason to waste resources and time not to mention going backwards to show it. ImoI just started playing and wow, MC certainly gives up on his wife real quick. Within 5mins of him finding out she's missing he takes off his wedding ring and says he's got to be there for the other girls now? Dude, she has been missing for under an hour?! Any husband would be out there kicking down doors and shooting "Fallen" til he had proof she was gone.
I mean, I'm all about the harem life, but maybe space this section out a bit, let him grieve, so MC doesn't seem like a cold hearted psychopath?
I unfortunately can't see the photo you attached, but I just tested all 3 OS versions and I believe the night 5 bug is resolved. If you downloaded the game more than 24 hours ago (at the time of this post) it will have the bug, but the current downloads should be fixed.Ummm.... I thought the night 5 error had been fixed, yes, no, maybe?
View attachment 1024541
Sorry it's just a pic but I'm too poor to have real Internet so I gotta use my phone lol
Well that explains that I had to use my cell and its prepaid so after a certain amount of hi-speed data it slows down ALOT and more than 24hrs. Ago is I think when I started the download lol. Sorry about the unnecessary post loving the game sofar jus the minor no BGM or SFX thing that bugs me a bit but I love fallout 4 style games like this or any open world/sandbox game for that matterI unfortunately can't see the photo you attached, but I just tested all 3 OS versions and I believe the night 5 bug is resolved. If you downloaded the game more than 24 hours ago (at the time of this post) it will have the bug, but the current downloads should be fixed.
I think you make a very valid point. And if MFA was a primarily narrative-driven (like a visual novel), I'd agree that spacing this out would be better. But there are a few reasons why I chose to make this "grieving" section short.I just started playing and wow, MC certainly gives up on his wife real quick. Within 5mins of him finding out she's missing he takes off his wedding ring and says he's got to be there for the other girls now? Dude, she has been missing for under an hour?! Any husband would be out there kicking down doors and shooting "Fallen" til he had proof she was gone.
I mean, I'm all about the harem life, but maybe space this section out a bit, let him grieve, so MC doesn't seem like a cold hearted psychopath?
Oh man, I'd hate for you to have to redownload the game for this fix in that case, haha. You can fix the issue with the following suggestion from docclox: (Editing the script.rpy file in game folder)Well that explains that I had to use my cell and its prepaid so after a certain amount of hi-speed data it slows down ALOT and more than 24hrs. Ago is I think when I started the download lol. Sorry about the unnecessary post loving the game sofar jus the minor no BGM or SFX thing that bugs me a bit but I love fallout 4 style games like this or any open world/sandbox game for that matter
Keep up the gr8 work!!!
Replace the line at 4201 with this and the error goes away
Code:try: rendered_sex_scene_automatic_func(night_rss_selected) except(NameError): pass
If you're at this point, I assume you just completed the ATVs Base Upgrade. When you assign girls to the Away Group and progress time in the day, you should now get an option to select "City Suburbs" or "Industrial Park" to send the girls to. Just make sure girls are assigned to the Away Group and it should work. If you still have problems, I'll look into the bug and post a console command that will fix the issue.Hey - liked the game a lot so far - just one question:
I cannot seem to find the way to explore the Industrial Park (Hint: Explore the Industrial Lofts in the Industrial Park).
Maybe it is something obvious I am missing ...?
You need to build the game flow using labels and statements. You can still use functions but they need to return before each user interaction.Appreciate the comment. I've been curious why MFA behaves differently to most Ren'py games in this regard. This is my first project in Ren'py and some things (like this) show my inexperience, haha! I'll look into altering my functions vs labels approach in future updates.
label test_label:
"narrator says something"
"narrator says something full screen" (full=True)
some_char "npc says something"
label test_label:
$ character.narrator("narrator says something", interact=True)
$ character.narrator("narrator says something full screen", interact=True, full=True)
$ character.some_char("npc says something", interact=True)
init python:
def character_narrator_say(what, interact=True, full=False):
renpy.show_screen("say_narrator", "full" if full else "partial", what)
define character.narrator = character_narrator_say