- Dec 4, 2016
- 1,584
- 2,517
oh sorry i just have seen this, the club initially is inside the library, after you refurbish it its in the main menuI just checked it, and still nothing, have to continue the story maybe ?
oh sorry i just have seen this, the club initially is inside the library, after you refurbish it its in the main menuI just checked it, and still nothing, have to continue the story maybe ?
it is a Daz model slightly modified, so it mightHi... Each time I see sister Ljijana, i think of Edwige Fenech. Is the character inspired by the actress?
"I knew I was taking a chance trying to do this while people were still around...
$ suspicion += 15 * ((100 - katy_corr)/100)
yeah i probably did that by mistakeWhy is the suspicion raised when doing research and production at the lab depending on Katy's corruption?
(several places is laboratory.rpy)Code:"I knew I was taking a chance trying to do this while people were still around... $ suspicion += 15 * ((100 - katy_corr)/100)
I'm thinking it should be dimi_corr, that would make more sense.
A few other things I noticed:
In house_events.rpy line 284 [Roommate] should be [Roommate1].
In house_events.rpy line 886 "to fast" should be "too fast".
In house_events.rpy line 890 "her face hands." should probably be "her face."
In house_events.rpy line 892 "as she cans" should be "as she can".
In katy.rpy line 2096 roommate should be [roommate]
In katy.rpy line 2025 landlady should be [landlady]
In katy.rpy line 2002 [roomie] should be [roomie1]
In katy.rpy line 2000 "did you found" should be "did you find"
In celia.rpy line 341 "in the lips" should be "on the lips"
In dimitria.rpy line 866 'scene black bg' should be 'scene bg black' (no background is shown).
In dimitria.rpy line 2365 the text is repeated twice.
In screens.rpy line 103 "Day Research points:" should be just "Research points:".
I think someone else mentioned this, but I dont have an android device to test it and I have not made any significant change to this in years so, idk really what it could be.Hey guys I’m probably just dumb, but I’m playing on android and on the intro screen where you’re supposed to type in your name, it doesn’t accept anything. Usually on other games that ask for a name, I can just type in whatever then just press the enter key, however in this particular instance, the keyboard just keeps popping back up and I can’t progress past this point. It’s possible that this Has been solved already, or it’s just a bug on my end, but like I said I’m probably dumb. Any help appreciated, thanks
$ used_supplies += 10
$ suspicion += used_supplies * ((160 - corr_police)/100)
#"You sleep pacefully. Freedom and suspicion has changed."
$ suspicion -= (12 - (10 * ((100 - corr_news)/100)))
$ suspicion -= int(12 - (10 * ((100 - corr_news)/100.0)))
wasn't aware of this, will definitely look into it and fix it tho its a lot of stuff.I don't know if you are aware, but there is a problem with calculations in the game.
If you use integers the result will be an integer in RenPy (Python 2.x), this is problematic for divisions.
Example from the game:
With used_supplies = 10 and corr_police = 0 this will be:Code:$ used_supplies += 10 $ suspicion += used_supplies * ((160 - corr_police)/100)
10 * 160/100 = 10
To avoid this you can force one of the numbers into a float, say you use 160.0 instead of 160, then it will be:
10 * 160.0/100 = 16.0
The example calculation will always result in 10 until corr_police is over 60, then it will always result in 0, probably not what was intended.
Another example:
This will either result in -2 if corr_news == 0 , or in -12 if corr_news > 0.Code:#"You sleep pacefully. Freedom and suspicion has changed." $ suspicion -= (12 - (10 * ((100 - corr_news)/100)))
EDIT:
This is how I would do it to make it work:
Code:$ suspicion -= int(12 - (10 * ((100 - corr_news)/100.0)))
Nice, I just went ahead and fixed it everywhere in my files to see the effect, didn't take all that long (love how you've structured the files btw). It makes the game a bit more challenging and fun when those calculations work, the players are getting way too little suspicion as it is now.wasn't aware of this, will definitely look into it and fix it tho its a lot of stuff.
I wanted to go over all of the management after the next update, so I will probably revisit the math too
releases are always around the day 20 of each monthNext update when ??
You can call her from your homeCan anyone tell me exactly where do I have to go to corrupt Emma.
Only cheat I ever used was materials BUT that was at the start of the game & yes I finished both of there stories and it even states that they are a part of the group I guess you could say. But there names are no longer in the HQ. It stated that there was a news anchor person going to be next but there's nothing in HQ saying anything nor a building to click that has me do it.so you already finished Ljijana's and Jovanka's story? There is a few more things after that, but if you can be more precise i can check it out, altho im about to go to sleep
you did not cheated right?
okay if it says something about the anchor you need to check the tv station, you can find it in down town then mid townOnly cheat I ever used was materials BUT that was at the start of the game & yes I finished both of there stories and it even states that they are a part of the group I guess you could say. But there names are no longer in the HQ. It stated that there was a news anchor person going to be next but there's nothing in HQ saying anything nor a building to click that has me do it.
When I click on Down Town it only gives me Office Buildings, Library, The Club, To the Chemical Plant, Church, To the Police Station.okay if it says something about the anchor you need to check the tv station, you can find it in down town then mid town
uhmmm okay, maybe is a bug, i will need to checkWhen I click on Down Town it only gives me Office Buildings, Library, The Club, To the Chemical Plant, Church, To the Police Station.
I have also clicked on everything else on the map and gives me nothing.