ILikeTurtles420
New Member
- Jun 29, 2019
- 6
- 4
- 66
I am interested in the story, I hope there will be one last update before the creator abandons the game. I will wait and see what happens...
He could be from Mercury where one day there is like 60 over here.You must be registered to see the links
Hello everyone,
I still have some work to do to get version 0.9 ready, especially with the images (editing), alone the clothing combinations with the clothes pregnant/not pregnant are around 700 renders. Also there are some problems with Nicole‘s pregnancy. So I‘ll split the update in two parts, the first one very soon, the second part at the end of February.
Maybe he thinks a month has 365 days
Not exactly with family but BANG CITY is a little bit like TYRANT. But unfortunally it is just at the beginning.any similar game to this
It means you don't go on ANY dates that weekend. You just skip the entire weekend masterbating.heyya guys, i gotta ask, trying the Alexis NTR route, what does the hint "stay the next weekend alone" mean? i tried skipping it, and going out with the other girls, but no new events with Davide shows up. I do have the SAZ mod installed.
so i just hit the skip weekend button? does anything show up after that? cuz i tried that for like a couple of weekends, but nothing changes, might be doing smth wrong tho...i am using the cheat to mod the stats, so might have missed smth....It means you don't go on ANY dates that weekend. You just skip the entire weekend masterbating.
Check the messages on your phone for one from Davide and when you start the weekend events there should 2 Alexis events. 1 is her normal one and the second is the Davide ntr one. I think that's the way to do it but either way start the weekend event.so i just hit the skip weekend button? does anything show up after that? cuz i tried that for like a couple of weekends, but nothing changes, might be doing smth wrong tho...i am using the cheat to mod the stats, so might have missed smth
Not surprised the update is taking a while given the need to rewrite his code - his previous clothing code was clumsy to begin with and trying to persist with the old style while adding pregnancy into the mix would be near impossible.A few improvements to the coding style I would like to humbly suggest:
1.) Clothing should probably be expressed as a variable e.g. nicolewear = "babydoll"/"leggings"/... rather than something like
"nicolebabydollwear = true and nicolerobewear = false and ... and ...", also making it cleaner to manage clothing changes.
2.) (a and b) or (a and c) or (a and d) or (a and e) is equal to a and (b or c or d or e)
interactions.rpy is particularly tortured:
if vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolesweaterpantswear == True or vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolerobewear == True or vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolereddresswear == False and nicolebabydollwear == False and nicolesweaterpantswear == False and nicolerobewear == False
I suggest:
def mom_is_love(): return (momlove > momcorruption)
def mom_is_corrupt() : return (momcorruption > momlove)
Then the following line is equivalent:
if (nicolewear == "sweaterpants" or nicolewear == "robe" or nicolewear == "leggings") and momlove >= 60 and mom_is_love() and vlroom8momtalknight2 = True
why not use a if else statement?A few improvements to the coding style I would like to humbly suggest:
2.) (a and b) or (a and c) or (a and d) or (a and e) is equal to a and (b or c or d or e)
interactions.rpy is particularly tortured:
if vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolesweaterpantswear == True or vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolerobewear == True or vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolereddresswear == False and nicolebabydollwear == False and nicolesweaterpantswear == False and nicolerobewear == False
I suggest:
def mom_is_love(): return (momlove > momcorruption)
def mom_is_corrupt() : return (momcorruption > momlove)
Then the following line is equivalent:
if (nicolewear == "sweaterpants" or nicolewear == "robe" or nicolewear == "leggings") and momlove >= 60 and mom_is_love() and vlroom8momtalknight2 = True
with this implementaton you will have an exeption wen love=corruption it's better to usewhy not use a if else statement?
if (mom_corrupt > mom_love){
mom_status == corrupt
}
elif (mom_love>mom_corrupt){
mom_status == love
}
or smth like that, sorry if the syntax is wrong, having a jumble of languages in my head right now
Remember last spring when he said he would finish the game by the end of summer, and we were all joking that he probably meant the summer 2020? TBH his predictions are so waaaaaaayyyyy off target that it's hilarious. I can't even get upset when his deadlines aren't reachedYou must be registered to see the links
Hello everyone,
I still have some work to do to get version 0.9 ready, especially with the images (editing), alone the clothing combinations with the clothes pregnant/not pregnant are around 700 renders. Also there are some problems with Nicole‘s pregnancy. So I‘ll split the update in two parts, the first one very soon, the second part at the end of February.
Maybe he thinks a month has 365 days
The renpy syntax of ur code (i believe) would be as follows:why not use a if else statement?
if (mom_corrupt > mom_love){
mom_status == corrupt
}
elif (mom_love>mom_corrupt){
mom_status == love
}
or smth like that, sorry if the syntax is wrong, having a jumble of languages in my head right now