PickerLewd

Engaged Member
Dec 22, 2022
2,951
3,791
397
Decided to take some time to play through Ep2? Although what am I talking about... 2030 isn't even here yet.
Your prediction is 5 years ahead of agn25's :PogChamp:. I'm sure that when I'm done with it, DM will release his EP2 rework.

At least I know there are paths that break the game and don't let you get back to the main path, so my bad habit of playing with only one save is over.
 

Stan5851

Forum Fanatic
Oct 18, 2019
4,677
9,741
658
At least I know there are paths that break the game and don't let you get back to the main path, so my bad habit of playing with only one save is over.
Well...that happens when you break the first commandment of being a gamer - is to never rely on 1 single save file. ;)
 
  • Thinking Face
Reactions: PickerLewd

agn25

Well-Known Member
Nov 20, 2017
1,402
3,159
445
Your prediction is 5 years ahead of agn25's :PogChamp:. I'm sure that when I'm done with it, DM will release his EP2 rework.

At least I know there are paths that break the game and don't let you get back to the main path, so my bad habit of playing with only one save is over.
:)

Don't give up on the one save experience in ep2. You haven't really lived the full 1 save Fashion Business experience until you agree to dance on stage at the Shinyhole with less than 350 corruption.
 

PickerLewd

Engaged Member
Dec 22, 2022
2,951
3,791
397
You haven't really lived the full 1 save Fashion Business experience until you agree to dance on stage at the Shinyhole with less than 350 corruption.
It's just that people play badly, if you have low corruption I guess you're playing a more decent Monica, so why would you agree to dance on stage like a stripper?
To do that kind of dance, just fill up on corruption points :LUL:.
 
  • Haha
Reactions: EraRamp and agn25

PickerLewd

Engaged Member
Dec 22, 2022
2,951
3,791
397
A funny thing that happened to me with Episode 1.

I started playing it in the previous version, and when I was more than halfway through, an update came out that added the gallery. I continued with the same save, which worked fine, and finished the adventure in less than 3 months BUT I was left with at least 80% or more of the gallery empty because I had played the scenes from the first two days before the update patch :HideThePain:.
 

PickerLewd

Engaged Member
Dec 22, 2022
2,951
3,791
397
You got to love it when bugs make logical sense.
I don't know about this case, but if the game forces you to do the dance and you can get to that scene without getting enough points and getting hardlocked, it's very bad design by the dev.
If on the other hand the game lets you choose, it's well done, you just have to be faithful to the way you play with Monica.
 

agn25

Well-Known Member
Nov 20, 2017
1,402
3,159
445
I don't know about this case, but if the game forces you to do the dance and you can get to that scene without getting enough points and getting hardlocked, it's very bad design by the dev.
If on the other hand the game lets you choose, it's well done, you just have to be faithful to the way you play with Monica.
It's a bug, it's not by design and makes no logical sense. It didn't appear until v16 of ep2 and we are stuck with it in the Bardie version of ep2 because he didn't fix it until he did the Bardie-less version that is on his Patreon page now. By design you should be able to put the whore clothes back on and come back with the needed corruption. This bug and a few others we have no choice but to put up with if we want the Bardie non-censored version. It is what it is.
 

PickerLewd

Engaged Member
Dec 22, 2022
2,951
3,791
397
Maybe DM wasn't on Patreon in the early days, but I don't know how he came up with the idea of including that pervert kid and all the code that must have been behind it, and therefore the bugs when he had to remove it :KEK:.
 

Stan5851

Forum Fanatic
Oct 18, 2019
4,677
9,741
658
Maybe DM wasn't on Patreon in the early days, but I don't know how he came up with the idea of including that pervert kid and all the code that must have been behind it, and therefore the bugs when he had to remove it :KEK:.
DM has been on Patreon for about 7 years already..So he can definitely be called an old-timer...As for Bardie, the bug with 350 corruption points (which, however, can be easily bypassed by standard game tools, such as built-in game cheats or by entering a code in the developer console), which a player can get in Shiny Hole is hardly related to Bardie's content.

It's hard for me to say why the DM decided to include Bardie in the game, but since he did and it didn't bother anyone for a few years, we can assume that Patreon/Paypal policy on allowable content at the time was more lenient and not as rigid as it is now.

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

vimmers

Forum Fanatic
Aug 12, 2017
4,225
3,753
476
Exactly I have edit my own file didn't copy / paste but still it's won't work :( quest folder - Achievement.rpy file ) :(
In previous episode 4 v9 it's worked completely fine but not. In this bruhh
dunno what you done wrong
but it works in my end
and just to be sure you can't transfer Achievement.rpy from previous version
you need to edit each version
screenshot0001.png
 
  • Like
Reactions: EraRamp

Njxxbjgcss

New Member
Jun 12, 2024
3
1
81
print
FashionBusiness-EP2-v16-Extra-pc\game\Quests
and the other 3 episodes
find the file Achievements.rpy
Open it with a text editor like notepad or notepad++
in the last line change false to True

this is much easier than installing those gallery mods you can find here
and gallery are ingame in left upper corner and looks like a diploma

this is for eps1,1 and shall be extracted in the game folder
and only for versions 1.1
use extract here
not extract to
View attachment 2764716

there are changes from eps4 v5
it shall looks like this


def check_achievement(str):
if str in achievements_labels:
achLabel = achievements_labels[str]
if (achLabel in persistent.achievements) == False:
persistent.achievements[achLabel] = True
# renpy.save_persistent()
print "Achievement reached!"
return True
return True

def get_achievement(achLabel):
if (achLabel in persistent.achievements and persistent.achievements[achLabel] == True) or debugMode == True:
return True
return True

def check_shake_achievement(video_filename):
shake_img = re.search(r'shake\_(\d+)', video_filename)
if shake_img != None:
check_achievement("img_" + shake_img.group(1))
return True
thanks for the guide, i unlocked the library in ep1 ep2 ep3. But i have trouble in ep4 v10, there are changes from eps4 v10
it shall looks like this:
def check_achievement(str):
if str in achievements_labels:
achLabel = achievements_labels[str]
if (achLabel in persistent.achievements) == False:
persistent.achievements[achLabel] = True
# renpy.save_persistent()
print "Achievement reached!"
return True
return False

def get_achievement(achLabel):
if (achLabel in persistent.achievements and persistent.achievements[achLabel] == True) or debugMode == True:
return True
if debugMode == True:
return True
return False

def check_shake_achievement(video_filename):
shake_img = re.search(r'shake\_(\d+)', video_filename)
if shake_img != None:
check_achievement("img_" + shake_img.group(1))
return
( I use gg translate to comment)
 

vimmers

Forum Fanatic
Aug 12, 2017
4,225
3,753
476
thanks for the guide, i unlocked the library in ep1 ep2 ep3. But i have trouble in ep4 v10, there are changes from eps4 v10
it shall looks like this:
def check_achievement(str):
if str in achievements_labels:
achLabel = achievements_labels[str]
if (achLabel in persistent.achievements) == False:
persistent.achievements[achLabel] = True
# renpy.save_persistent()
print "Achievement reached!"
return True
return False

def get_achievement(achLabel):
if (achLabel in persistent.achievements and persistent.achievements[achLabel] == True) or debugMode == True:
return True
if debugMode == True:
return True
return False

def check_shake_achievement(video_filename):
shake_img = re.search(r'shake\_(\d+)', video_filename)
if shake_img != None:
check_achievement("img_" + shake_img.group(1))
return <-----
( I use gg translate to comment)
change red to true and insert true at arrow
 
3.50 star(s) 242 Votes