ding1807

Member
Jul 1, 2018
249
334
Hey, did they remove the Special chemistry quest? didnt show up for me and if i want forward, i have to do it, i guess its (bathroom show up stuff)
 

dunhill

Active Member
May 3, 2017
531
901
Amazing how long it took this dev to figure out piracy wasn't hurting his game and he was only hurting his paying customers by delaying the offline version.
yup i remember that his game (big brother) got popular because of piracy, due to Patreon new rules he was forced to abandon that game on top of that Patreon don't advertise or promote adult game devs... the only way adult game devs get ppl to support them on Patreon is by putting their game here on F95Zone and if ppl like the game then they would go to Patreon and support them...

DarkSliver was a huge diva queen at the beginning (idk if hes still that way) back when he was developing Big Brother he was late with updates and was saying that he would quit his job and work full time on Big Brother only if he made a certain amt, then going back on that saying shit like he need job security bla bla bla (i think the game studio he was working for either closed or he was fired).. then when he did dump Big Brother and started working on this game he lost many fans and supporters (this game was originally online only and his reason for this was "updates would be better and it would be a better game" which everyone saw thru him and dropped his ass) i think he lost like over 60% of his supporters because of that online only shit....

there is game adult devs out there that are able to grow much faster than him due to the fact that they don't fight piracy like him OR they give out the updates for free for everyone and make much more than him..

 

Deleted member 237822

Well-Known Member
Oct 8, 2017
1,177
1,545
I am trying to provide a better way of importing old save games but for now you can use this workaround:

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,
Perhaps I am just an idiot but this doesn't seem to work with online saves does it?
If someone still has a copy of .25 offline I think I have a way of cheesing my save with it. Thanks.
 
Last edited:

Deleted member 237822

Well-Known Member
Oct 8, 2017
1,177
1,545
No, only offline saves..
If you're playing the online patreon version, the saves migrate (since they're stored serverside afaik)
yeah, i knew about that but I didn't know if somehow l8rdude had a way of pulling those or not. If I still had access to an offline .25 I think I could use it to create an offline save. For some reason I could find both my offline and online saves in either version.
 

wazaa

Newbie
Aug 5, 2017
35
40
For people having problems recovering the savefiles from v 0.27

In version 0.27, there where in folder:

C:\Users\[username]\AppData\Roaming\glamour\Local Storage

In version 0.28, there are in folder:

C:\Users\[username]\AppData\Roaming\glamour-updater\Local Storage

Copy the complete folder and it will work
 

alyath

Member
May 31, 2020
375
350
Game full of missing images, can't select character now.
Okay, seems like I had to close the game and reload before the images popped.
Weird.

Welp, stuck in minimal window size. Time to figure out how that was defeated last build again.
I can stretch it out using the "Maximise" button but I'd rather have have to do that every time I want to play.

Silver can continue the march forward if he likes but doing away with the Display settings completely was not a good move.
Probably couldn't figure out how to port it to Electron but honestly...
For me I logged in to my Patreon, and then all missing Images were downloaded. After this I can also maximise the Window. Don´t know of this is some kind of antipiracy Tool.
 
Last edited:

Snogardragons

Member
Apr 27, 2017
110
106
For people having problems recovering the savefiles from v 0.27

In version 0.27, there where in folder:

C:\Users\[username]\AppData\Roaming\glamour\Local Storage

In version 0.28, there are in folder:

C:\Users\[username]\AppData\Roaming\glamour-updater\Local Storage

Copy the complete folder and it will work
Eww...That means I now have 3 variations of the same game. Devs needs to narrow down the folder he wants it to be in and leave it. All that method is doing is taking up WAY more space than needed. Turning a nearly 4GB game into an 11GB game for no real reason.
 

Juanjobar

Member
Nov 11, 2017
148
71
Are the saves of this game saved in any specific location, like for example in renpy where u have the saves in Users/Nameuser/Appdata etc etc or this game only keep saves in the specific folder of the game? Im asking this cause i played the game long ago but i dont remember exactly when, i would like too know if enough time passed to play from start again or if i better wait a bit more for more content.
 

bozoplace

Active Member
Dec 7, 2019
539
411
Edit - restart fixed this :)


Does anyone know how to fix this?

After downloading version 0.28 I only had the option to start a new game, so I did and get this?

2020-07-26.png
 

alyath

Member
May 31, 2020
375
350
Are the saves of this game saved in any specific location, like for example in renpy where u have the saves in Users/Nameuser/Appdata etc etc or this game only keep saves in the specific folder of the game? Im asking this cause i played the game long ago but i dont remember exactly when, i would like too know if enough time passed to play from start again or if i better wait a bit more for more content.
Even this Depends on wich Char:
For Max: Wait next Update.
For Kate: Give it a Try.
 

joedirt

New Member
Jun 20, 2017
8
4
never see how kate lose virginity, but first sex scene with Alice and a dildo. scrap my interest for this game for ever.
 

Deleted member 237822

Well-Known Member
Oct 8, 2017
1,177
1,545
never see how kate lose virginity, but first sex scene with Alice and a dildo. scrap my interest for this game for ever.
If you played the medical check up scene you learn she wasn't born with a hymen so technically she never does. However, her first sex scene can be with Julia and Nick if you don't turn them down.
 
  • Like
Reactions: alyath
2.60 star(s) 184 Votes