mizilic

Well-Known Member
Jan 16, 2019
1,476
936
You need to win the wish in the poker game. Once you win it, you have to talk to Veronika to confirm the wish. Then in a few days Nicolas will announce the change of the rule during class. This is what you're missing to start the new tradition quest.
But I did won 3 wishes from Veronica. Are there 4 ?
At this time i do not have an option to play for a wish..
 

Microtom

Well-Known Member
Sep 5, 2017
1,180
4,447
But I did won 3 wishes from Veronica. Are there 4 ?
At this time i do not have an option to play for a wish..
You probably didn't talk to her after you won the poker game, so nothing happened. Or maybe you never went to class to see the announcement, but that'd be quite unlikely.
 

mizilic

Well-Known Member
Jan 16, 2019
1,476
936
You probably didn't talk to her after you won the poker game, so nothing happened. Or maybe you never went to class to see the announcement, but that'd be quite unlikely.
This is what the quest log says about playing for wishes:
And this status has been reached many weeks ago.
As far as I know i finished that quest but there was never talk about punishing naked. From where does this idea come ? Does Nicholas tell Kate about it? If yes on what occasion?
 

Microtom

Well-Known Member
Sep 5, 2017
1,180
4,447
This is what the quest log says about playing for wishes:
And this status has been reached many weeks ago.
As far as I know i finished that quest but there was never talk about punishing naked. From where does this idea come ? Does Nicholas tell Kate about it? If yes on what occasion?
The wish to change the college rules is unrelated to this quest. Go to your laptop and click the "start voting" button in the punishment section. Then go play poker to win the wish.
 

mizilic

Well-Known Member
Jan 16, 2019
1,476
936
The wish to change the college rules is unrelated to this quest. Go to your laptop and click the "start voting" button in the punishment section. Then go play poker to win the wish.
I did click now but there it's written they must wear underwear. And will i get an option to play for wishes with Veronica after i clicked, maybe next day?

EDIT:
Looks good , i did get the wish option next day , lets see if also the rest happens as you said. Thanks in advance.
 
Last edited:

mizilic

Well-Known Member
Jan 16, 2019
1,476
936
The wish to change the college rules is unrelated to this quest. Go to your laptop and click the "start voting" button in the punishment section. Then go play poker to win the wish.
YESSS! I got this announcement (but it still says with underwear not without - is that right so ?)
 

mizilic

Well-Known Member
Jan 16, 2019
1,476
936
Yea now you need to do the same thing a few more times until you reach punishments without panties in the office.
Good thanks a lot. Kate doesn't wear panties anyway but the others .. :)
I had no idea that I must click on those punishments in the laptop.. me noob at this particular game.
BTW do you know a way to delete saves or to save with a keys shortcut when the icons are not shown? Deleting like in renpy doesn't work. Right click>save also not..
And speaking of panties it's a pain in the ass to have to go to school in time to take them off. I understand that permanent pants off is not implemented yet. Any other way to have them off all the time?
 

mizilic

Well-Known Member
Jan 16, 2019
1,476
936
Does the Cheerleader quest end after the
You don't have permission to view the spoiler content. Log in or register now.
I have 720 points but was not told if i am in or not: I keep taking out panties and wearing butt plug every day and don't know if that is still necessary for that quest. Not having to go to bathroom every day before the hours would allow me to do other things and not have to skip events that just appear at that time but I don't know if there is a maximum of points that i must reach in that quest. Oscar keeps raising my skirt on the corridor and i keep getting points for that. And also for getting naked at the uniform controls. But are those points still needed for this quest or is tis quest finished (it appears as finished in my quest log)?
 

mrX

Newbie
Jun 11, 2017
17
2
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,
Everything is clear, other than how to export your savegame to a JSON file. I use the tool, need more clear instructions on how to export the savegame.
 

mizilic

Well-Known Member
Jan 16, 2019
1,476
936
Everything is clear, other than how to export your savegame to a JSON file. I use the tool, need more clear instructions on how to export the savegame.
We are at version 0.31 now not 0.27 and i just hope that when the next update comes I will not have to do such a complicated thing to go on playing that new version from where we left in this version. Not all of us are coders ..
 

mrX

Newbie
Jun 11, 2017
17
2
We are at version 0.31 now not 0.27 and i just hope that when the next update comes I will not have to do such a complicated thing to go on playing that new version from where we left in this version. Not all of us are coders ..
So it won't work on version 31?
 

Ahchi

Forum Fanatic
Jul 17, 2020
4,667
8,515
Does the Cheerleader quest end after the
You don't have permission to view the spoiler content. Log in or register now.
I have 720 points but was not told if i am in or not: I keep taking out panties and wearing butt plug every day and don't know if that is still necessary for that quest. Not having to go to bathroom every day before the hours would allow me to do other things and not have to skip events that just appear at that time but I don't know if there is a maximum of points that i must reach in that quest. Oscar keeps raising my skirt on the corridor and i keep getting points for that. And also for getting naked at the uniform controls. But are those points still needed for this quest or is tis quest finished (it appears as finished in my quest log)?
What ONLY 720 points in "Cheerleader" ! :ROFLMAO:
Your not trying hard enough !
You don't have permission to view the spoiler content. Log in or register now.
 
  • Haha
Reactions: Dragon59

Dragon59

Conversation Conqueror
Apr 24, 2020
6,715
10,980
Does the Cheerleader quest end after the
You don't have permission to view the spoiler content. Log in or register now.
I have 720 points but was not told if i am in or not: I keep taking out panties and wearing butt plug every day and don't know if that is still necessary for that quest. Not having to go to bathroom every day before the hours would allow me to do other things and not have to skip events that just appear at that time but I don't know if there is a maximum of points that i must reach in that quest. Oscar keeps raising my skirt on the corridor and i keep getting points for that. And also for getting naked at the uniform controls. But are those points still needed for this quest or is tis quest finished (it appears as finished in my quest log)?
I'm been skipping the butt plug lately. My Kate has 1020 points and the way it's going, she'll probably be at 2000 by the time we can move forward.
 
  • Wow
Reactions: mizilic

mizilic

Well-Known Member
Jan 16, 2019
1,476
936
So it won't work on version 31?
I have no idea how it works here, i just started to play the whole game with version 3.1 and i'm used with games where the next version just goes on from the last save you made in the previous version.
 

mizilic

Well-Known Member
Jan 16, 2019
1,476
936
This must be a bug: The dialogue with Karen after she catches Kate showing her pictures to Sophie in class was repeated 6 times already in 2 consecutive days with no modifications and always sending Kate to Sophie to ask what exactly did she like in those pictures but in the dialogue with Sophie Kate never asks about that so there is no answer to that question. This keeps going like that in every break between classes even after they were caught a second time and punished naked in Nicholas' office.
 

MinkoSvk

Member
Sep 1, 2020
209
180
This must be a bug: The dialogue with Karen after she catches Kate showing her pictures to Sophie in class was repeated 6 times already in 2 consecutive days with no modifications and always sending Kate to Sophie to ask what exactly did she like in those pictures but in the dialogue with Sophie Kate never asks about that so there is no answer to that question. This keeps going like that in every break between classes even after they were caught a second time and punished naked in Nicholas' office.
Find bugfix here
 
2.70 star(s) 190 Votes