rabultfe

Member
May 4, 2019
284
225
for those whom stuck on the first loading screen
delete the game
re-extract it
this time block it in your firewall before running
run the game and it should work
 
  • Like
Reactions: rustbell

Dragon59

Conversation Conqueror
Apr 24, 2020
6,706
10,975
So when Max route is broken is that new content 4 Kate? Last one i got is Villa quest and nothing more change then that Kate just clean it up. And nothing rrldr happend..
rrldr? Rail Road Long Distance Romance?
 

legiun

Newbie
Apr 11, 2020
84
39
is the cash out required to trigger something? i mean if i dont cash out from cameras everything works fine.
 

Ahchi

Forum Fanatic
Jul 17, 2020
4,474
8,076
And Max STILL has no Edu stats !
What is the point of more eye candy if in the end we are going to have to restart him?
Without Edu stats we can not get Max ready to enter college.
The longer this goes on ,The bigger the outcry will be when players learn that need to restart/replay Max !
 

Kronordil

Newbie
Jul 9, 2018
68
65
I firmly believe that Max is the owner of that college. Cameras everywhere, spanking is the main form of punishment, and everything has a purpose of breaking the students into submissive sex toys.

Sounds exactly like my Max. :)
 

Kronordil

Newbie
Jul 9, 2018
68
65
Yeah i can't do nothing because its a main story quest, and when i try to do it the game just freeze.
Have you tried starting a new game with Max? In previous build dev said cameras will stop paying after getting $2000.

Maybe he didn't update that trigger to work again
 

legiun

Newbie
Apr 11, 2020
84
39
And Max STILL has no Edu stats !
What is the point of more eye candy if in the end we are going to have to restart him?
Without Edu stats we can not get Max ready to enter college.
The longer this goes on ,The bigger the outcry will be when players learn that need to restart/replay Max !
Education, i dont think they do anything, even for Kate, you can have 1000 or 0.. Wont change a thing, at least is what i think, for now.
 

Dragon59

Conversation Conqueror
Apr 24, 2020
6,706
10,975
I firmly believe that Max is the owner of that college. Cameras everywhere, spanking is the main form of punishment, and everything has a purpose of breaking the students into submissive sex toys.

Sounds exactly like my Max. :)
Perhaps Max from the future returned to the present. Perhaps Max' father.
 

ibrahimovich87

New Member
Aug 5, 2016
10
3
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,
Hi it's normal that in 0.29 i canno't see any savegame?? when i'll start it they told me that there isn't any savegame
 
  • Like
Reactions: michel.gellar7
2.70 star(s) 187 Votes