HelotGames

Member
Game Developer
Mar 23, 2022
112
272
WAY TO MODDED VERSION :

Don't ask my why, I've spend my last 48h modding and fixing weirdly implemented things in the game.
This version contains more content (cloth,variations,stats,settings,balance,gifs), but it's mainly a big code overhaul.
Obviously, old saves won't work at all.

Enjoy !
Feel free to give feedbacks :cool:

You don't have permission to view the spoiler content. Log in or register now.

LINK :
My god! :-D

Well done sir, if you don't mind, then I might take some inspiration from the way you have done it, and implement it in future versions of the game :)

Thanks a lot!
 
  • Like
Reactions: VIOLET222

Hermenegild

Member
Sep 18, 2017
451
242
Another traceback for you, Ninoss:

You don't have permission to view the spoiler content. Log in or register now.

Happened during the exam loading a save file, with a girl taking the exam for some 5th time or so. Let me know if you need a save file, but after quitting the game and loading it again, everything worked.
EDIT: fix crash time.
 
Last edited:

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
630
1,140
That is a lot of effort just for two days. But why did you add the .save files to the download, total size of these were 283Mb, also I tried some, they didn't work.

I have come across image problems for Naomi Kassing and Hayley Mills. Both their grope boob images do not come up.
Also is it possible to change the pink text to black.

Edit: Sometimes the wrong girl leaves the room, eg girl 2 is supposed to leave, but girl 1 goes. Also the panty stealing maybe broken, it doesn't count sometimes.
Oof thanks, I'll delete those saves from the download and most of them are broken anyways ><

I already had that missing imgs bug, it's a when particular combination of cloth confuses the code, if you saved at this moment I can fix it with the save file ;)
About wrong girl leaving the room, a save file during the exam with a description of what lead the girl to leave might help me too

Old panties stealing code is disabled so counting is broken but that's normal.
 
Last edited:

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
630
1,140
My god! :-D

Well done sir, if you don't mind, then I might take some inspiration from the way you have done it, and implement it in future versions of the game :)

Thanks a lot!
That was the initial intention ;)
You can send a DM if you are unsure about some pieces of code


Another traceback for you, Ninoss:

You don't have permission to view the spoiler content. Log in or register now.

Happened during the exam loading a save file, with a girl taking the exam for some 5th time or so. Let me know if you need a save file, but after quitting the game and loading it again, everything worked.
EDIT: fix crash time.
'traced_expressions' is a part of the stacked callback save thingy of Renpy. Maybe this save is just in a none enought "neutral position" for Renpy to recover from it. If you can send me the save file it might help but it's probably just a "confused Renpy" bug (y)
 
  • Like
Reactions: HelotGames

Doctor Shark

Member
Nov 7, 2019
319
693
The gameplay is pretty confusing right now and all the girls are just a faceless horde but I love the concept and I'm looking forward to seeing where this goes.
 
  • Like
Reactions: HelotGames

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
630
1,140
WAY TO MODDED VERSION :

Don't ask my why, I've spend my last 48h modding and fixing weirdly implemented things in the game.
This version contains more content (cloth,variations,stats,settings,balance,gifs), but it's mainly a big code overhaul.
Obviously, old saves won't work at all.

Enjoy !
Feel free to give feedbacks :cool:

You don't have permission to view the spoiler content. Log in or register now.

LINK :
LINK UPDATED to WTM 1.1

- Updated with some features of 0.1.1 (Tutorial and Stat screen)
- I've bump up the number of matched bodies to 25 + faces (Doctor Shark)
- I've added more variations to cloths
- Some minors optimization
 
Last edited:

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
630
1,140
WTM 1.2

- Re-Implemented the panty stash
- Panties now have a "price"
- Corrected some UI issues

In near future you would be able to buy things with panties :cool:

LINK :
 

drhotrod

Active Member
Aug 18, 2019
701
507
WTM 1.2

- Re-Implemented the panty stash
- Panties now have a "price"
- Corrected some UI issues

In near future you would be able to buy things with panties :cool:

LINK :
Since there are faces now, why not add more options live give flowers, jewelry or chocolate (make the other girls jealous). Kiss the girls or even have blowjobs. Maybe even make some of these as the first thing to do that opens up the other options for the other body areas.
 

mark818

New Member
Feb 25, 2021
14
14
WTM 1.2

- Re-Implemented the panty stash
- Panties now have a "price"
- Corrected some UI issues

In near future you would be able to buy things with panties :cool:

LINK :
images/exam/pussies/22.jpg missing an underscore
 
  • Like
Reactions: pollution21

Hermenegild

Member
Sep 18, 2017
451
242
WTM 1.2

- Re-Implemented the panty stash
- Panties now have a "price"
- Corrected some UI issues

In near future you would be able to buy things with panties :cool:

LINK :
There's something wrong with the algorithm for choosing the girls which are actually going to take the exam. I think it was broken in earlier versions, too, but it's completely off in this version. For three first days it was just three girls, always the same, being examined over and over again; on the fourth day, one of those have been replaced with another, but the two have repeated once again. Is it in the game design that a girl will retake the exam until she passes, with no time to study in between, and no other girls attempting?

IMHO, it should be a FIFO(-ish) queue.
  1. put your 7 starting girls in random order in the queue,
  2. loop:
    1. if it's Monday morning, insert a new girl at the front of the queue,
    2. pop three girls from the front of the queue for the exam,
      • if queue too short, GAME OVER,
    3. append the girls who failed or abandoned the exam to the end of the queue.
This way you see each girl more or less as often as the others. No randomness, granted, but it's easy to make it random while retaining the flat distribution (just use two different queues, and switch them around if one runs out).
 
Last edited:
4.20 star(s) 23 Votes