Snugglepuff

Conversation Conqueror
Apr 27, 2017
7,581
8,083
Then why is there an incest patch?
Because the person who made it did so because they didn't like the game's buggy way of having characters refer to each other by name instead of relation i.e. Ann being addressed as Ann instead of mom/mother/whatever you put in the box for her.
 

Maethir

Member
Jul 28, 2018
366
323
Because the person who made it did so because they didn't like the game's buggy way of having characters refer to each other by name instead of relation i.e. Ann being addressed as Ann instead of mom/mother/whatever you put in the box for her.
For the mother, yes this would make sense as would never refer my mother by actual name. Conversely it annoys me when other games replace sibling or cousins name with sis, bro or cut in every situation, as this is not the normal way referring to them generally. This is of from an American English perspective and other cultures and languages may differ on that
 

metub90

Newbie
Jan 10, 2023
70
20
Make Ann Mom Again incest patch
updated 12/25/22

This patch reverts the game to .53 .

Something in the game was changed for .54 and I can't access the file I need to make my own updates so I don't expect to fuck with this one any more.

It annoys me when I map the NPC to Mom and the MC still refers to her by her first name. Never known anyone that did that. I made some updates so that Ann text is displayed as Mom and Max, Lisa and Alice refer to her as Mom while other people refer to her as Ann or your Mom.

I also punched up the incest talk a bit. I wanted them all to acknowledge what was happening.

This update took several hours to complete. I don' t know that I will be doing this again before the game is complete/abandoned.

To change the script replace the app.asar file under the game folder.

This mod only works on version .53

Little incest talk: Workupload

Slightly more incest talk: Workupload

Explanation on slightly more incest talk: https://f95zone.to/threads/glamour-v0-53-dark-silver.10579/post-9691286
View attachment 2045910 View attachment 2045942 View attachment 2045919 View attachment 2045934 View attachment 2045920 View attachment 2045912
how can i make money i don't have money to buy cammera
 

Snugglepuff

Conversation Conqueror
Apr 27, 2017
7,581
8,083
For the mother, yes this would make sense as would never refer my mother by actual name. Conversely it annoys me when other games replace sibling or cousins name with sis, bro or cut in every situation, as this is not the normal way referring to them generally. This is of from an American English perspective and other cultures and languages may differ on that
I'd imagine it's largely the same wherever in the world - Parents as mother/father, aunts/uncles may get title before name depending on circumstances, siblings and cousins just names. Well, at least outside of "step-bro, what are you doing?" porn shenanigans.
 

LegendBear

Member
Jul 9, 2018
301
417
I cannot for the life of me figure out how to proceed here. Angela took a picture of Adam and I in the classroom, she confirmed he will vote my way, the principal mentioned making an announcement for something, I can't unlock anything via the laptop, none of the teachers have any dialogue options. Idk what to try now.

I've gone back to an older save and confirmed that the principal said he would be making an announcement for the anatomy class "tomorrow" but he never does.
 
Last edited:

zickyjork

Member
Aug 2, 2017
261
100
Important: Starting with Glamour v0.27 savegames don't need to be decrypted anymore and thus GlamourEdit is neither working nor needed any longer on newer versions.

How to import old save games into Glamour 0.27

* updated version *

  • Use GlamourEdit to export your savegame to a JSON file.
  • Open Glamour 0.27 and press CTRL+Shift+I
  • A new window will open, on the bottom half you should now see a console where you can enter text. (Click on the Console tab at the top if you can't see it).
  • Paste the following code in there (make sure you copy all of it):
  • JavaScript:
    const uploadElement = document.createElement("input");
    const prepareDom = () => {
    uploadElement.type = "file";
    uploadElement.addEventListener("change", () => {
    const reader = new FileReader();
    let file = uploadElement.files[0];
    reader.addEventListener("load", function () {
    importSavegame(reader.result);
    }, false);
    reader.readAsText(file);
    });
    document.body.appendChild(uploadElement);
    };
    const importSavegame = (savegame) => {
    try {
    character = JSON.parse(savegame).currentCharacterId;
    if (character === undefined) {
    showInfo("Could not detect character of the provided save game. Exiting...");
    return;
    }
    console.log(character);
    insertNewSave(character, savegame);
    } catch (error) {
    showInfo("Something went wrong. Make sure you selected an unencrpyted version of your save game");
    }
    };
    const insertNewSave = (character, savegame) => {
    let highestSlot = Object.keys(localStorage).filter(n => n.startsWith("save:" + character)).map(item => parseInt(item.split(":")[3]));
    let freeSlot = Math.max(-1, ...highestSlot);
    let currentTime = Math.round((new Date).getTime() / 1000);
    localStorage[`save:${character}:${currentTime}:${++freeSlot}`] = savegame;
    showInfo("Your savegame should be imported now.");
    document.body.removeChild(uploadElement);
    };
    const showInfo = alert;
    prepareDom();
  • Press ENTER. If everything went well you will now see a file picker at the top left of your screen labeled "Choose File". If the game is hanging or not responding, close the game and repeat the steps.
  • Click on that button and select the JSON file you exported earlier.
  • You will get a success message if your savegame was imported properly. If not, make sure you selected the right file.
  • The Choose File button will now vanish. Close the developer tools by pressing CTRL+Shift+I again (you can also just restart the game, but it's not necessary)
  • Go to the "LOAD GAME" screen. Your savegame should now appear in that list granted you have the correct character selected.



* alternative version *
  • Use GlamourEdit to export the savegame you want to play to a JSON file.
  • Open Glamour 0.27 and start a new game and choose the same character your old savegame uses.
  • Once inside the game, click the cog wheels, select SAVE GAME and save your game. You will be redirected back to the main menu.
  • Open the JSON file you exported earlier in a text editor of your choice and copy its content to your clipboard
    • Alternatively just select the save in GlamourEdit, click on the editor on the right, press CTRL+A to select all and CTRL+C to copy to clipboard.
  • Do whatever way you prefer but the result must be that your old unencrypted save game is now in your clipboard.
  • Back in the game press CTRL+Shift+I to open the Chrome Developer Tools.
  • Select the tab "Application" at the top (if you dont see it, try resizing the new window that opened and make it bigger or click on », then Application.
  • On the left side click on the arrow next to Local Storage to expand it, then click on file://.
  • In the list that showed up check the Key column and look for a string that starts with save. For example: save:kate:1593106068:0. If you selected max it will save max instead. Pick the the one with the highest number at the end after the last colon :)). (The format of this string is always save:<maincharacter>:<unixtimestamp>:<slotid>)
  • Doubleclick on the text in the "Value" column and you'll notice the whole text will be selected. Press CTRL+V to paste and overwrite this text.
  • Press CTRL+Shift+I again to close the Chrome Developer Tools. Back in the game click on Load Game.
    You should now see your old save. You should load it and save it again ingame to make sure it stored it correctly.


TL;DR: DS included the developer tools in this release for whatever reason which makes it very easy to access the browser that's powering the game. Replace a value in the local storage with your save contents and the game will recognize it.

To make it easier in the future we should probably implement a modified loading system in the game. I attached the (somewhat) unobfuscated source code of the game in case anyone feels like doing that. Relevant code starts at line 5624.

Cheers,
I'm kind of lost... so do we not need to edit them at all anymore? or is there an easier way to do it
 

TomUK

Engaged Member
Sep 28, 2021
2,875
2,137
how can i make money i don't have money to buy cammera
To start with the only way to make money is to ask Ann for it, but you should start with at least one camera already installed in the living room. Don't spend any of your starting money until you can buy the website making book for $100, also don't spend the other $50 until you get your website up and running and then spend it on advertising. Don't forget to collect money from Ann daily.
 
  • Like
Reactions: metub90

Dukez

Member
Dec 19, 2020
417
1,525
Anyone know how much longer is planned on this game until it's classified as "complete"? Enjoy the game, and his previous one even more but the way dialogue is delivered in this game is just... so bad. Doesn't seem like they will change it at this point so hopefully whenever they move onto the next game they do.

Have they added much to the kate side? Last I played there wasn't really much action and overall just super slow.. and the big brother side is just retelling stuff we've already played more or less - has it gotten past where the old game got dropped at yet?
 

Krugger

Active Member
Game Developer
Aug 13, 2019
795
7,405
Could someone summarize the events of version 0.55.1? I took a look at the CG and I was kind of like that when I saw Andrew and Oscar's content ( )
robertdowney.png
DS and your team made the two characters look like they were impotence, looks like they're going to change the script a bit and getting Kate blackmailed by loan sharks because of Julia, that's what I understood from looking at the CGs, I don't know if Julia and Kate will have help from Fedor, so I didn't get it right. Could someone talk about and summarize?
 
Last edited:

BigRedRadio

Active Member
Oct 8, 2022
606
444
Okay, how do I trigger the Oral sex in the morning with Veronica on the Kate route, she's always in the shower when Kate wakes up if I stay awake it tells me not to disturb her and none of the talking options offer the option. Also is there a 3 way with Fedor in there it certainly hints at the possibility but it doesn't seem to progress
 

LegendBear

Member
Jul 9, 2018
301
417
I cannot for the life of me figure out how to proceed here. Angela took a picture of Adam and I in the classroom, she confirmed he will vote my way, the principal mentioned making an announcement for something, I can't unlock anything via the laptop, none of the teachers have any dialogue options. Idk what to try now.

I've gone back to an older save and confirmed that the principal said he would be making an announcement for the anatomy class "tomorrow" but he never does.
Is anyone able to help me with this?
 
2.60 star(s) 186 Votes