Raistln

Member
Oct 24, 2021
411
283
Nah, I've done all of the Kira sunbathing stuff from 12:00 (both alone and with Ann) until it keeps repeating, it's the same quest and same step but a different objective (the one you're talking about is Kira's lunch breaks).
This line seems to indicate that I must apply lotion to Alice when she's on a towel next to the swimming pool from 13:00 to 14:00 (often bra-less or naked) but I've reached a point where she doesnt do that anymore. I'm not sure if it's because Ann is now home and cleaning rooms during that time or if it's because I joined the college... I wish there had been some sort of safety to prevent this from happening.

What's also weird is that I somehow joined the college in between the two medical examinations that seem to be prerequite. (But i don't read most dialogue so I'm not sure if that's normal). Overall it feels like the storylines are messed up around that point.
It's wierd that it's not happening for you. The only time I've ever rubbed lotion on Kira was during her lunch breaks. It started with her being in the lounger, as soon as I choose to sunbathe with her, she made a reply about she should lay down on something, got on a towel, and then started the applying lotion and then sex scenes.
I don't remember doing anything with Kira ever, except the late night porn, random handjob while sleeping in Ann's room, and the lunch break sunbathing events. I've never seen her between breakfast and her lunch break or from there until late at night.
So that has to be the time during her lunch break.
 

Hacke74

Member
Jan 28, 2022
126
114
It's no longer fun to play this game, for the 5th time in a very short time I deleted all the game files, Max route started again and the same result again, the quest New World Order can't be completed because alic's punishment ann isn't triggered. I have considered and applied all solution aids and possible sequences that were suggested by hir and nothing happened. I am no closer to the solution. It's not fun to play for several hours and see the same thing over and over again and then get stuck in the same place. I was repeatedly assured that this scene existed and that they wanted to show a video where the scene can be seen, unfortunately there hasn't been a video to date!!!! You shouldn't complain about a free game. But I personally think that the developers should still do a flawless job in order to maybe win some new patrons for their game. I myself had toyed with the idea of giving a little financial support at the beginning, but now absolutely not, me advise against it at the moment. For me personally it is certain that the developers actually only want one thing, earn money, earn money and earn money again and if I employ employees, so much money must be earned that I can pay these employees and the better I can pay them to they will do a better job that way. This is my opinion.
 

Rex72

Member
Aug 5, 2018
124
89
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,
Is there really no way to add a simple settings tweak for stats and money in the game it self?
 

raveeak

Member
Oct 11, 2019
244
61
How can you use save data in android i cant find any location for this
in android 11 default file manager doesnt show the android data.
you have to download files in play store
in this app you can see the android data folder you can accesss the files
 

gnadudu

Well-Known Member
Aug 31, 2018
1,845
2,723
Is there really no way to add a simple settings tweak for stats and money in the game it self?
As long as the code is not available in deobfuscated form it's a pain in the ass to add new menus/buttons. (especially because it has to be updated for every new version. The code get's reobfuscated each time...)
 

Squark ⚧❤️

Conversation Conqueror
Jun 16, 2017
6,957
7,768
are there new quests with max in version 0.46
Sadly, at this point I think it's safe to assume just about everything will involve Max in some way even when it has nothing to do with him. An example would be how Veronica looks at Kate in the shower.
I used to like this game.
 
  • Like
Reactions: Konstantin
2.60 star(s) 183 Votes