- Aug 11, 2016
- 1,194
- 2,532
Warning by TCMS:
Coding thread only. If you want to know more about variables / code about the game. Not the place to have discussions about scenes / events / triggers. That's the only thing allowed on this thread.
Any off topic conversation and you're getting warned.
//--//
Hello everyone
As you know, we're crunching Big Brother Data to bring you the whole informations about it.
I'm parsing all the dialogues and mergins all mechanics, so i can say that i know with exactitide how things go, when and why.
I don't want to create a walkthrough, because it means that i tell you how to play. No i want to give you the understanding of your choice, then you can make them with full comprehensions.
Big Brother use internal and external variables.
Internal variables are set BEFORE a new day or a new hour arrives. Here they are
Then you have the hand.
Each NPC have their own dialogue start point. It changes from the plan, the hour, the day, the variable and the state.
Here an exemple. I parsed the dialogues, and generate a graph. In the graph you'll see the variable tests (have sun oil + random social skill test)
My past intervention about my mod was to add some branch without the tests when test are, so you can force the way to the rest of the path.
In my cheat menu, i gave you the ability to raise the skill level for Max, here is how it looks like
I manipulate variables.
In my cheat menu, i gave you the ability to punish your sisters, that's how i dit it :
I manipulate states.
I'll stop for today, because there is so much i want to tell you
I'll try to generate graphes for key dialogues. So you'll be able to use them as guides
Here is the variable names in current version (0.9.0.006)
In Game variables
Coding thread only. If you want to know more about variables / code about the game. Not the place to have discussions about scenes / events / triggers. That's the only thing allowed on this thread.
Any off topic conversation and you're getting warned.
//--//
Hello everyone
As you know, we're crunching Big Brother Data to bring you the whole informations about it.
I'm parsing all the dialogues and mergins all mechanics, so i can say that i know with exactitide how things go, when and why.
I don't want to create a walkthrough, because it means that i tell you how to play. No i want to give you the understanding of your choice, then you can make them with full comprehensions.
Big Brother use internal and external variables.
Internal variables are set BEFORE a new day or a new hour arrives. Here they are
- Is there anybody in the house
- Place each of them
- For each on of them, does they have a plan.
- For each on of them, does they have a state.
- Is there a shipment ongoing
- Is anybody need time to be talked to
- Update base variables
You don't have permission to view the spoiler content.
Log in or register now.
You don't have permission to view the spoiler content.
Log in or register now.
You don't have permission to view the spoiler content.
Log in or register now.
You don't have permission to view the spoiler content.
Log in or register now.
Then you have the hand.
Each NPC have their own dialogue start point. It changes from the plan, the hour, the day, the variable and the state.
Here an exemple. I parsed the dialogues, and generate a graph. In the graph you'll see the variable tests (have sun oil + random social skill test)
My past intervention about my mod was to add some branch without the tests when test are, so you can force the way to the rest of the path.
In my cheat menu, i gave you the ability to raise the skill level for Max, here is how it looks like
Code:
add_skill.social_1000^ Max social Skill
add_skill.massage_1000^ Max massage Skill
add_skill.dex_1000^ Max dex (peek) Skill
add_skill.kiss_1000^ Max kiss Skill
In my cheat menu, i gave you the ability to punish your sisters, that's how i dit it :
Code:
set_alisa.pun_1!set_alisa.punreason_6^ I want Alice punished !
set_liza.pun_1!set_liza.punreason_2^ I want Lisa punished !
I'll stop for today, because there is so much i want to tell you
I'll try to generate graphes for key dialogues. So you'll be able to use them as guides
Here is the variable names in current version (0.9.0.006)
You don't have permission to view the spoiler content.
Log in or register now.
In Game variables