- May 11, 2019
- 208
- 117
where do i put this file to load up your saveSave v0.25 Kate
slot1.json
81fe0e0a-7851-47a5-a9bf-6e17ed1d02e3.guid
i was able to do this... thanksI 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.You must be registered to see the links
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.
instruction post abovewhere do i put this file to load up your save
i tryed to do this .... where do i put GlamourEdit so i can inport my saveI 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.You must be registered to see the links
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.
0.26 - fix bugsafter 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
does not work i download the file and added it to c:/user/...../AppData/Roaming/Glamour then start the game i see no save file of his game for max. only see my save fileinstruction post above
ok sometimes i am realy happy i am not one of their patreons cos they are expanding story progress as slow as possible. I realy like the art and the ideas Dark Silver has, but the game plot developemt is awfull at best sometimes even non existent0.26 - fix bugs
dont work. tryed to read what you said step by step. but its not easy.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.You must be registered to see the links
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,
where do i put GlamourEdit every time i try to open it says no save file. no mater where i put GlamourEdit and iv try all overdont work. tryed to read what you said step by step. but its not easy.
There are only 2 ways a vote like this would go in Kate's favour: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.
from you and a few vocal minority mainly.I guess we just have a big misunderstanding 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.
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.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
Those are fighting words, lol,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?
I'd say getting flak for that from "OG Glamour/Kate" fans/purists would be pretty disingenuous of them.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