giqui

Conversation Conqueror
Compressor
Nov 9, 2019
6,270
43,414
How It All Began [v1.2] [Anarchy3dstudios]

COMPRESSED

SIZE ~ 356 MB

PC/MAC: - - - ANONFILES /

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

TuffSub

Newbie
Nov 11, 2018
49
87
Femdom?!
Really???
After all that time I was waiting???
Femdom, huh?
:FacePalm:
Dude... seriously? the game is tagged with "female domination".
If you don't want femdom (which, per your user name, seems like a major issue for you for some reason) - filter those games out. There's an "exclude tags" option in the search parameters.
And if you do want to explore femdom games - you are welcome to do so without spewing frustration at them including femdom.
Just let those of us who enjoy this content do so in peace.
 

Bjarne23

New Member
Apr 3, 2020
1
0
Here's a small transparent textbox I made out of some of the game's own files.
Black with red borders.

Add to "game\gui" and replace old file.
 

Jack-ish

Active Member
Jul 12, 2018
600
716
Dude... seriously? the game is tagged with "female domination".
If you don't want femdom (which, per your user name, seems like a major issue for you for some reason) - filter those games out. There's an "exclude tags" option in the search parameters.
And if you do want to explore femdom games - you are welcome to do so without spewing frustration at them including femdom.
Just let those of us who enjoy this content do so in peace.
I totally agree. People who complain about things they don't like are so dumb.
 

ben7513

Member
Mar 26, 2018
316
115
To the Developers,

You need to change the color of the text or put in a different colored box. I can not read half or three quarters of what is beig said. This seems like a good game, but if I can't read what is being said, then the game SUCKS!!!!!

Please fix this MAJOR issue as soon as possible.
 

-CookieMonster666-

Devoted Member
Nov 20, 2018
11,197
16,307
The farthest I got was Matty helping Lita with the washing machine before I closed the game. I just couldn't read what was being said. And that like I said made the game SUCK!!!! And me MAD that I couldn't read what was being said.

You REALLLLLLLLLLLY NEED to change the color of the text or preferably put in a colored box so I can read the missing 3/4th of the text. SERIOUSLY NEED TO FIX THIS MAJOR PROBLEM!!

Couldn't even get past the first update/chapter.

Game looks interesting though. Of course, I'll have to start allll over again once you do fix this MAJOR PROBLEM.
It's a fair complaint, although there have been several posts on this thread with fixes specifically for this issue. Yes, the developer needs to change it. But that shouldn't keep you from playing given fixes have been provided here in this very thread to allow you to see the text much more easily. So, if that's the only thing holding you back, you should use one of the fixes provided.

There's one just two posts before your first one about this (darkens the background behind the text), but you can keep going up and find another couple within the past page or two of the thread.
 

ben7513

Member
Mar 26, 2018
316
115
There's one just two posts before your first one about this (darkens the background behind the text), but you can keep going up and find another couple within the past page or two of the thread.
[/QUOTE]

Oh. Thank you. That will make me very happy to play this game. It looked interesting from the summery and pictures.
Thank you again.
 
  • Like
Reactions: -CookieMonster666-

LWtbo

Well-Known Member
Feb 11, 2018
1,375
2,421
I congratulate the DEV for making it to Version 1.2 so some people must like it.
Took me a long time to get round to trying this game till version 1.2 infact.
Sort of wonder why in 0.1 this happends. Magic.jpg
When he still on his way to talk to his mom and isn't supossed to be in the room yet.
And I have no intention of saying its a bad game because honestly I wouldn't know.
I stopped playing and deleted it after the Blow Job scene I like to think my suspension of belief is quite good.
But aparently I was wrong watchng that first scene I don't think my suspension of belief is ever going to be good enough to buy into that bullshit.
Not saying it's a bad scene I just can't buy into it sorry.
First off he's afraid she will wake up and kill him over his boner.
And yet then he's odviously not that afraid since he thinks it would be a good idea instead to drop his shorts and get his dick out and start wanking himself aganst his moms lips?. don't seem like he's that fraid of possible castration via mom to me.
I don't know maybe if the MC hadn't tried to claim it was an accident after telling his mom to "Just shut up mom"
while sticking it forcefully in her mouth then followed it with "oh fuck yeh" and finally.
Yeh Right.jpg
I might and its a big might of been able to buy into it and kept playing.
BTW not that it matters but fairly sure it's supossed to be "Oh come on mom you know you've done this before".
Not sure how I'm supoosed to buy that it was an accident so don't see how mom could not after he talks like that during it.
But like I said the game might be great but due to my dislike of spoilt brats (which this MC came across as), and sex scene's I find quite frankly to ludicrously unbelievble to get past.
I will sadly have to give this one a miss but thats just my own personal opinion.
And I hope the Dev continues their success and to delight the players that like this game.
I hope you the players that like it continue to enjoy it.

Just Sayin.
 
Last edited:
  • Like
Reactions: fedegrox

-CookieMonster666-

Devoted Member
Nov 20, 2018
11,197
16,307
How to fix this
IDK why you would get that, but basically it means what it says: the code has indentation at the start of the file. Ren'Py uses indentation (spaces, never tab characters) in its code to indicate subsections. (Python, upon which Ren'Py is based, does this as well.) For example, when a menu appears, you'll have something like the below.
Python:
menu:
    "menu choice 1":
        ---STUFF HAPPENS HERE---
    "menu choice 2":
        ---OTHER STUFF HAPPENS HERE---
Because indentation indicates that things "belong" to what's above them ("---STUFF HAPPENS HERE---" is a part of picking "menu choice 1", and so on), the beginning of the script file should never have indentation. It's the beginning of everything and so isn't dependent on anything else in the game.

I do not know how you got the first line indented, though, but I think you should be able to fix this. Close the game completely and then open the \game folder (wherever you have the main folder for How It All Began saved). With that open, right-click on the file called script.rpy and open it with even a basic text editor. Delete any indenting from the very first line of the file and then save it again. Finally, you want to delete the RPYC that's normally automatically generated with the game; so locate script.rpyc if you can and delete the file if it exists (it's possible it's not there). Now restart the game and the error should hopefully be gone.
 

Uji00000

New Member
May 2, 2022
4
2
IDK why you would get that, but basically it means what it says: the code has indentation at the start of the file. Ren'Py uses indentation (spaces, never tab characters) in its code to indicate subsections. (Python, upon which Ren'Py is based, does this as well.) For example, when a menu appears, you'll have something like the below.
Python:
menu:
    "menu choice 1":
        ---STUFF HAPPENS HERE---
    "menu choice 2":
        ---OTHER STUFF HAPPENS HERE---
Because indentation indicates that things "belong" to what's above them ("---STUFF HAPPENS HERE---" is a part of picking "menu choice 1", and so on), the beginning of the script file should never have indentation. It's the beginning of everything and so isn't dependent on anything else in the game.

I do not know how you got the first line indented, though, but I think you should be able to fix this. Close the game completely and then open the \game folder (wherever you have the main folder for How It All Began saved). With that open, right-click on the file called script.rpy and open it with even a basic text editor. Delete any indenting from the very first line of the file and then save it again. Finally, you want to delete the RPYC that's normally automatically generated with the game; so locate script.rpyc if you can and delete the file if it exists (it's possible it's not there). Now restart the game and the error should hopefully be gone.
Can you do this for me,
 
  • Thinking Face
Reactions: -CookieMonster666-
2.80 star(s) 23 Votes