DarkKiller

Active Member
Sep 3, 2016
716
10,205
  • What's the deal with Bella and James? He’s gone missing. Wasn’t voluntary.
What makes you say it wasn't voluntary? The way Bella explains the situation it can go both ways really.
isa "And James...he's... He's been missing for a long time now."
isa "He - *Breathes heavily* - left and *Breathes heavily*. I didn't want him to leave, and they said he could still be alive, but..."
isa "No one knows where he is."
 
  • Like
Reactions: Porthas and Bleiu

The Dick

Member
Oct 22, 2022
172
2,363
ok......where the fuck are people getting the console commands from. unlike many here, im barely computer literate. RayD has taken pitty on me a couple times with basics(RPjosy=, money=, pp_party) but is there a full list somewhere?

Mr. Bubu's Visual Walkthrough has most of them listed. But this one I discovered inspecting a saved file on this . Having a basic knowledge of Ren'Py commands also help, but, to check variables, just type the name hereof in the console and it'll output its status; to change it, type "{name of variable} = {value you want}". "True" and "False" are case-sensitive. To enable the console, just create a file with whatever name you want, but with a .rpy extension (for instance, "console.rpy") and put it in your game folder with the code below (spaces matter -- every new line adds 4 spaces):

Python:
init -1:
    python hide:
        config.developer = True

Then, press "shft+O" and, voilà, you have your console enabled.

(This works for most games and not only BaDIK, though, sometimes, you have to change the init value.)

You can check other variables with this . Scripts for BaDIK are mostly in the "scripts.rpa" or "scripts_season2.rpa" packages (.rpa are like .zip files wherein many files are packaged inside, the code files are either .rpy or .rpyc, the latter being the compilated version of the former.)

Other fun things you can do in the console:

Let's say you like minigames a lot, especially the "Clean the Pink Rose Label":

screenshot0196.png

Now you can play it whenever you want! Just open the console and type:

Python:
jump ep7_pr_clean1_label

... and, voilà, you're ready to entertain yourself!

(This works for any scene that has a label in it; you just have to look at the code, find the label, and type "jump {label name}".)

Now... Those are mostly for memes but entertaining nonetheless. You can make any character say whatever you want, like this:

smells-like-ass.jpg

The perfectionist way is to find the appropriate character code (in the example above, it was "ta"), and then, for instance, you type:

Python:
ta "Hmm... It smells like ass... I like it!"

And, voilà, Tara will obey your commands and say whatever you want her to say. The list of characters is in separate script files inside the .rpa packages called "characters.rpyc" (two files) and "characters_season2.rpyc" (the most complete is the Season 3 one), but you can just type any name between quotes and it will work (though it will use the standard color):

Python:
"Tara" "Hmm... It smells like ass... I like it!"


You can also create fake menus, like the one below:

screenshot0194.png

Though similar to the one in the game, this menu is fake because you can never have all the options. To create it, just type:

Python:
menu:
  "Isabella":
    pass
  "Jill":
    pass
  "Josy & Maya":
    pass
  "Sage":
    pass
  "Others":
    pass
  "I don't wanna choose! Fuck DPC!" if False:
    pass

Now, the trick. The console is just for one-line commands. To create a menu like this, type one line (for instance, "menu:") and press enter. Every time the console finds a ":", it will change the prompt to "..." and will create the indentation (the spaces) for you. Then, just type the following line (for instance, "Isabella:"; no need to add spaces, because, as I said, the indentation was created for you) and press enter again. It will create another indentation and, then, if you want to create a fake menu, just type "pass" (a command that does nothing but has to be there, otherwise, you'll get an error). Then press enter two times to create another option (the first time, you create a new line to add another command in case you need it; the second, you go back to the menu block, aligned with "Isabella:", so you can add another option, for instance, "Jill". In the last line, you have to press enter three times.

The "if False" at the end of the last option is to create a disabled option. For you to see it, you have to type "config.menu_include_disabled = True".

And that's all for "Hacking Ren'Py Games in Real Time 101". Next episode there'll be a minigame about it in the form of a test.
 

noahsombrero

Member
Aug 9, 2023
253
142
This is math... :illuminati:
And "=" is like kinda universal... Even the guys who bombed in my school math classes knew what "=" meant... I think this is Kindergarten level of knowledge... It's like "A", "B", or "C" that even people who don't know how to read probably know what they mean...
It is more about proficiency. Especially in situations that are more complex than 2+2=.

This is programming syntax I don't expect people to know:
Code:
push@a,/./g;$r||=@a}{print$s{-1+map{$u{$_}||=$a[$_]+$s{$g-1}for
grep$a[$_]*!$s{$_},$g+$r,$g-!!($g%$r),$g-$r*($g>=$r),++$g*!!($g
%$r);($g)=sort{$u{$a}-$u{$b}}keys%u;$s{$g}=delete$u{$g}}@a}
Yes, but inability to cope kicks in far before most people get within a few miles of that.
 

chuck69

Active Member
Apr 9, 2023
501
1,034
Mr. Bubu's Visual Walkthrough has most of them listed. But this one I discovered inspecting a saved file on this . Having a basic knowledge of Ren'Py commands also help, but, to check variables, just type the name hereof in the console and it'll output its status; to change it, type "{name of variable} = {value you want}". "True" and "False" are case-sensitive. To enable the console, just create a file with whatever name you want, but with a .rpy extension (for instance, "console.rpy") and put it in your game folder with the code below (spaces matter -- every new line adds 4 spaces):

Python:
init -1:
    python hide:
        config.developer = True

Then, press "shft+O" and, voilà, you have your console enabled.

(This works for most games and not only BaDIK, though, sometimes, you have to change the init value.)

You can check other variables with this . Scripts for BaDIK are mostly in the "scripts.rpa" or "scripts_season2.rpa" packages (.rpa are like .zip files wherein many files are packaged inside, the code files are either .rpy or .rpyc, the latter being the compilated version of the former.)

Other fun things you can do in the console:

Let's say you like minigames a lot, especially the "Clean the Pink Rose Label":

View attachment 3224332

Now you can play it whenever you want! Just open the console and type:

Python:
jump ep7_pr_clean1_label

... and, voilà, you're ready to entertain yourself!

(This works for any scene that has a label in it; you just have to look at the code, find the label, and type "jump {label name}".)

Now... Those are mostly for memes but entertaining nonetheless. You can make any character say whatever you want, like this:

View attachment 3224337

The perfectionist way is to find the appropriate character code (in the example above, it was "ta"), and then, for instance, you type:

Python:
ta "Hmm... It smells like ass... I like it!"

And, voilà, Tara will obey your commands and say whatever you want her to say. The list of characters is in separate script files inside the .rpa packages called "characters.rpyc" (two files) and "characters_season2.rpyc" (the most complete is the Season 3 one), but you can just type any name between quotes and it will work (though it will use the standard color):

Python:
"Tara" "Hmm... It smells like ass... I like it!"


You can also create fake menus, like the one below:

View attachment 3224340

Though similar to the one in the game, this menu is fake because you can never have all the options. To create it, just type:

Python:
menu:
  "Isabella":
    pass
  "Jill":
    pass
  "Josy & Maya":
    pass
  "Sage":
    pass
  "Others":
    pass
  "I don't wanna choose! Fuck DPC!" if False:
    pass

Now, the trick. The console is just for one-line commands. To create a menu like this, type one line (for instance, "menu:") and press enter. Every time the console finds a ":", it will change the prompt to "..." and will create the indentation (the spaces) for you. Then, just type the following line (for instance, "Isabella:"; no need to add spaces, because, as I said, the indentation was created for you) and press enter again. It will create another indentation and, then, if you want to create a fake menu, just type "pass" (a command that does nothing but has to be there, otherwise, you'll get an error). Then press enter two times to create another option (the first time, you create a new line to add another command in case you need it; the second, you go back to the menu block, aligned with "Isabella:", so you can add another option, for instance, "Jill". In the last line, you have to press enter three times.

The "if False" at the end of the last option is to create a disabled option. For you to see it, you have to type "config.menu_include_disabled = True".

And that's all for "Hacking Ren'Py Games in Real Time 101". Next episode there'll be a minigame about it in the form of a test.
This is me right now :LOL:

i was shamed into learning how to activate the console recently, and if im being honest, it probably took longer than it should have. this......... is going to take a while. :LOL:

jokes aside, i really appreciate the time you took putting that together. i look forward to figuring it out. thank you!
 

aarbei23

Member
Jan 14, 2018
280
2,045
So, Episode 10.

The awesome:
  • See best pic below.
The good:
  • Ass
  • Anal
  • Bella
  • The above 3 words in the same scene.
  • Big reveals/answers about Maya's (and Derek's) background.
  • Main events progressing the story (Jade's divorce, Tybalt's... situation, Quinn talking to the MC about dealing drugs, Bella talking to the MC about James, Zoey realizing she fucked up, etc.).
  • Some cool new songs.
The meh:
  • The Thanksgiving "party" was pretty lame compared to the previous Halloween and DIK parties. Some activities with the MC's main love interest might've made it better.
  • The characters are starting to look like each other. A lot. Especially the dudes. For some reason it was more noticible to me this episode.
The wat:
  • Don't you hate it when you go to the gym and there's always a random black dude telling you his life story, before he adopts you and starts training you to be the new Karate Kid?
Fuck this shit:
  • Having to wait a year for an episode, because:
  • Madam (I still don't get this anti-porn content).
  • Pointless minigames: fishing, math, English, etc. The minigames involving the characters are fine (party planning, hidden renders, Brawler), but why spend so much dev time on games that were already boring last century?
  • Too many branches and (new) side characters that eat up content that could've gone to the main girls. There a some exceptions to this, like Quinn, Riona, and maybe Lily (all of them connect to the main story), but characters like Madam, Nora, and Nicole are just a dead end.
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.
 

Ray_D

Forum Fanatic
Nov 13, 2022
4,080
13,497
Don't you hate it when you go to the gym and there's always a random black dude telling you his life story, before he adopts you and starts training you to be the new Karate Kid?
that was extremely specific. you took that plot from the movie never back down or what?. :HideThePain:
MV5BMjY2NDkwMjY4M15BMl5BanBnXkFtZTcwNDEyMDk1MQ@@._V1_.jpg
 

Cervixpunch

Newbie
Feb 10, 2019
87
507
So, Episode 10.

The awesome:
  • See best pic below.
The good:
  • Ass
  • Anal
  • Bella
  • The above 3 words in the same scene.
  • Big reveals/answers about Maya's (and Derek's) background.
  • Main events progressing the story (Jade's divorce, Tybalt's... situation, Quinn talking to the MC about dealing drugs, Bella talking to the MC about James, Zoey realizing she fucked up, etc.).
  • Some cool new songs.
The meh:
  • The Thanksgiving "party" was pretty lame compared to the previous Halloween and DIK parties. Some activities with the MC's main love interest might've made it better.
  • The characters are starting to look like each other. A lot. Especially the dudes. For some reason it was more noticible to me this episode.
The wat:
  • Don't you hate it when you go to the gym and there's always a random black dude telling you his life story, before he adopts you and starts training you to be the new Karate Kid?
Fuck this shit:
  • Having to wait a year for an episode, because:
  • Madam (I still don't get this anti-porn content).
  • Pointless minigames: fishing, math, English, etc. The minigames involving the characters are fine (party planning, hidden renders, Brawler), but why spend so much dev time on games that were already boring last century?
  • Too many branches and (new) side characters that eat up content that could've gone to the main girls. There a some exceptions to this, like Quinn, Riona, and maybe Lily (all of them connect to the main story), but characters like Madam, Nora, and Nicole are just a dead end.
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.
I agree with a lot of what you said but "Too many branches and (new) side characters that eat up content that could've gone to the main girls" is a criticism DPC doesn't really deserve especially for a game with porn built around choice where many players are going to make numerous runs and saves. I feel the attention to side girls was something that improved the game not remotely held it back. Sometimes that content will be with a girl you don't like Camilla, Riona, Quinn, Sarah whoever but doesn't mean it's not worthwhile been there.

If he'd listened to complaints like that early on Riona, Quinn, Lily and Nicole wouldn't be the characters they are now or have branches, all 4 have grown increasingly popular precisely because they've had work put in to them and it's not like Sage and co became poor or marginalized characters over it. Even minor characters like Camilla don't hurt the game. It's not like the playerbase is even opposed to it I didn't see many thrilled time was saved by Tiffanni, Tara and Gina not been a scene. Outside Madame who was a massive swing and a miss because yeah she's hideous, none of the side girls made the game worse. I think the work on them made BAD better than if we'd eaten cheese with Bella, watched an extra movie with Maya or eaten sandwiches with Jill instead. Variety is definitely something I feel has worked for BAD on the whole.
 

aarbei23

Member
Jan 14, 2018
280
2,045
I agree with a lot of what you said but "Too many branches and (new) side characters that eat up content that could've gone to the main girls" is a criticism DPC doesn't really deserve especially for a game with porn built around choice where many players are going to make numerous runs and saves. I feel the attention to side girls was something that improved the game not remotely held it back. Sometimes that content will be with a girl you don't like Camilla, Riona, Quinn, Sarah whoever but doesn't mean it's not worthwhile been there.

If he'd listened to complaints like that early on Riona, Quinn, Lily and Nicole wouldn't be the characters they are now or have branches, all 4 have grown increasingly popular precisely because they've had work put in to them and it's not like Sage and co became poor or marginalized characters over it. Even minor characters like Camilla don't hurt the game. It's not like the playerbase is even opposed to it I didn't see many thrilled time was saved by Tiffanni, Tara and Gina not been a scene. Outside Madame who was a massive swing and a miss because yeah she's hideous, none of the side girls made the game worse. I think the work on them made BAD better than if we'd eaten cheese with Bella, watched an extra movie with Maya or eaten sandwiches with Jill instead. Variety is definitely something I feel has worked for BAD on the whole.
Oh yeah, the girls aren't poorly done (except for Madam), but the issue I have is that the dev time also could've gone into more scenes with the main girls (or releasing the episode earlier). I'm also worried this might lead to too much stuff going on for DPC to keep track off. A lot of games have had the same problem; too many characters, leading to the dev giving up.
 

mercytea

Member
Oct 29, 2017
371
332
If there must be a traitor in DIKs, my guess is John-Boy. Because he is the only one without a photo of fucking Arieth for no good reason before the blackmail of Chad. He had a threesome with Elena and Arieth. Maybe they don't like to take photos when they fuck. It's okay. Maybe that's just a coincidence. But when I had this hunch I began to find some evidence when the cluck of nude Cathy being posted.
BeingADIK_hFqfkr96b4.jpg
Who would continue drinking beer when you really want to piss? :mad:

BeingADIK_3XOxH6JEc6.jpg BeingADIK_oAk8WPSMvp.jpg
Oh! Another Derek hiding his phone in his underpants? I don't think so... :oops:

According to Rusty's testimony, We knew the laptop was found in the library. John Boy is the one near the library. Yeah... I know Nick was in the library. But we could hypothesize that Rusty took the laptop before Nick could find it so Nick still wanted to find the laptop in the library. John Boy's behavior and testimony have obvious flaws so my guess is John-Boy is the so-called traitor.

PS: But John Boy's account did comment on the cluck of nude Cathy. :unsure:
BeingADIK_hWoQGyUZSC.png
 
Last edited:

Gato21

Active Member
Oct 16, 2021
954
2,860
If there must be a traitor in DIKs, my guess is John-Boy. Because he is the only one without a photo of fucking Arieth for no good reason before the blackmail of Chad. He had a threesome with Elena and Arieth. Maybe they don't like to take photos when they fuck. It's okay. Maybe that's just a coincidence. But when I had this hunch I began to find some evidence when the clunk of nude Cathy being posted.
View attachment 3224655
Who would continue drinking beer when you really want to piss? :mad:

View attachment 3224663 View attachment 3224662
Oh! Another Derek hiding his phone in his underpants? I don't think so... :oops:

According to Rusty's testimony, We knew the laptop was found in the library. John Boy is the one near the library. Yeah... I know Nick was in the library. But we could hypothesize that Rusty took the laptop before Nick could find it so Nick still wanted to find the laptop in the library. John Boy's behavior and testimony have obvious flaws so my guess is John-Boy is the so-called traitor.
My guess if they were to have a threesome it wouldn't be in the closet where the only camera is.

"Who would continue drinking beer when you really want to piss?" - I feel called out.
 
  • Haha
Reactions: El Rav

JohnnyCrunch

Newbie
Sep 2, 2020
90
189
Didn't JB say he was looking for Rusty, but he heard somebody fucking in Rusty's room... so he left?

Don't know if he's telling the truth or not, but I'm just surprised the guys didn't ask each other where they were when the shit hit the fan... err... cluck hit the rooster.

Personally, I think it was one or two of the HOTs that were behind that. Maybe Quinn & Riona, but more likely Mel & Sarah. Those two work out at the gym with the Alphas, so they'd be in the locker room where Cathy's photo was taken. When questioning people at the party right after the pic was posted, they acted like they were sure it was the MC who did it. Maybe they wanted to get back at him for getting Chad ousted.

As I've said before, I don't think any DIKs are behind any of this shit.
 

Emea7

Newbie
Oct 28, 2022
26
107
Sadly the Questions and Answers post for ep10 was nuked. :cry:

But fear not, in keeping with the long tradition of this series it can be resurrected through the power of copy/paste! :cool:

The following is largely the work of the original poster, with some minor edits.

Don't read on if you don't want spoilers. Hell, why are you even on this thread if you don't want spoilers... :rolleyes:

So what's this? It's just a post-update list of what we know and what we don't know, starting from Episode 5.

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.
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.
So while not many questions were completely answered this episode, at least I haven't really come up with many new ones.

This episode was pretty good.

And oh yeah, if you think I've missed anything, let me know. :giggle:

You don't have permission to view the spoiler content. Log in or register now.
Hell yeah, i was hoping someone continued this. Appreciate it mate!
 
  • Like
Reactions: Meushi

marcomemmey

Member
Apr 14, 2020
137
100
Is it possible for Bella to find out who was cheating? It keeps showing in the ending card that she didn't, and I dont remember if I have a save where I didnt throw away the answer sheet.

Also why does this choice say "possible Cathy scene"?
You don't have permission to view the spoiler content. Log in or register now.
 
4.80 star(s) 1,584 Votes