• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

tontoman

Active Member
May 4, 2017
684
543
I'm not 100% certain, so correct me if I'm wrong, but I think he didn't ditch BB because he didn't want to keep at it, but because Patreon hammered it down due to their "don't bang your family" policy. And as you said, he is already remaking it inside Glamour. And given the fact that BB has better models, established fanbase and MALE protagonist I don't see how focusing on that would be a bad move. If anything, the Kate part is vegetating around the Max part, which is what keeps this game alive.
If you haven't been following the game/thread you probably don't know he put the game dev to a vote. Keep 2 Kate updates for every 1 of max, or make it 1:1.

Keeping it 2:1 for kate won out. So hardly the bb path keeping it alive.
 
  • Like
Reactions: Naxos and groq

angella

Member
Jan 29, 2018
391
76
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
  • 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 openend 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.
i was able to do this... thanks
 

Parmenion1405

Member
Dec 27, 2017
212
173
after 0.25 offline now 0.27 offline? ok i get it new engine without DRM.. but what about the content info about 0.26 can anyone get those aswell, cos i am not intrestet in Max story but like to know what how far i can now progress in Kates story
 
  • Like
Reactions: kriskano

evildead

Active Member
Feb 11, 2018
614
329
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
  • 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 openend 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.
i tryed to do this .... where do i put GlamourEdit so i can inport my save
 

evildead

Active Member
Feb 11, 2018
614
329
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 tab 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,
dont work. tryed to read what you said step by step. but its not easy.
 

Joe Banana

Member
Feb 5, 2018
190
183
If you haven't been following the game/thread you probably don't know he put the game dev to a vote. Keep 2 Kate updates for every 1 of max, or make it 1:1.

Keeping it 2:1 for kate won out. So hardly the bb path keeping it alive.
There are only 2 ways a vote like this would go in Kate's favour:
1. The majority of DS's patrons are female(highly unlikely), or
2. He put it up for a vote when his BB patrons were already gone and had no idea the story and the characters are back(like myself until recently).

Kate's path has two major flaws - generic, boring looking characters and female protagonist. Players need to be able to identify themselves with the protagonist, at least at some level, if the game is to be any serious success, like BB was. Up to this point, Glamour is nowhere near that level. Do you believe that's a coincidence?
 

Naxos

Engaged Member
May 9, 2018
2,490
6,853
I guess we just have a big misunderstanding :D My whole point was that the Kate portion of the game is generating much less interest but still eating up development time. I don't care about the name of the game, I don't mind the slightly different approach to the story in Glamour or the new renders(except for Lisa's hair), I just think the focus should be on releasing mostly(if not only) Max content. That's it. Does that mean that "BB will happen all over again"? I don't know. And I don't know how that's different from what's happening right now. Take it as you will, because I don't think I can explain it any better.
from you and a few vocal minority mainly.

Ideally he kills of this Max BB crap and focuses on the Kate route :p


anyone else having problems buying the laptop?
I click all over the screen and nothing.
Only thing that comes up is the conversation with the consultant in the store
Same thing. Also have similar issues with answering questions in the lessons, which I accidentally clicked on and couldn't get out of, eventually after much random clicking it select an answer.
 

Naxos

Engaged Member
May 9, 2018
2,490
6,853
There are only 2 ways a vote like this would go in Kate's favour:
1. The majority of DS's patrons are female(highly unlikely), or
2. He put it up for a vote when his BB patrons were already gone and had no idea the story and the characters are back(like myself until recently).

Kate's path has two major flaws - generic, boring looking characters and female protagonist. Players need to be able to identify themselves with the protagonist, at least at some level, if the game is to be any serious success, like BB was. Up to this point, Glamour is nowhere near that level. Do you believe that's a coincidence?
Those are fighting words, lol,

dude you got to accept not everyone has the same tastes as you.

Honestly for me the biggest issue with the Kate and weasal in the same game is the number of posts in the thread everytime there is a Kate update going on about Max and is there new content or enough content with the male MC route, every single fucking time. The confusion and mixing the two into one is what gets me.

Funny thing is (and I'll get a lot of flak from the Gamlour fans for this) I have no issue with Max as part of the Kate route, everytime she stays over at the villa I wanted something to happen with the 3 of them, Kate, Alice and Max. I just fucking hate 2 separate games in one, with two different fan bases
 

evildead

Active Member
Feb 11, 2018
614
329
can someone help me pls. where do i put GlamourEdit.exe so i can copy my v0-25 saves to v0-27 thank you. as every time i try to open GlamourEdit.exe i get. savegame location doesnt exist or is empty. create your 1st save in game in order to use this program..... iv got my old saves plus i also made a new game save aswell. but it still says the same thing
 

jdog0192

Newbie
Aug 8, 2018
46
13
is anyone else having trouble transferring Max's saves since they are saving to a different folder as a locked microsoft office file?
 
2.60 star(s) 183 Votes