5.00 star(s) 5 Votes

ffive

Conversation Conqueror
Jun 19, 2022
7,056
16,580
Hmm found a minor bug in 0.16: when choosing the outfit on day 11, when the game asks, "Are you happy with your outfit?" choosing the option to "Restart" doesn't actually fully restart but skips choosing the upper body clothing and jumps straight to choosing the lower body piece. (meaning you can't change the upper body pick) Dunno if that's fixed in the more recent builds.
 

TyrantBinch

Newbie
May 28, 2021
35
22
It's really like the M&F route. I don't really understand why go for lesbian path when it's literally a transformation/sissification theme. Why did I say these? because Female routes are at all time high in poll results in patreon. Luke, Jordan and Vincent all the way! (for me)
 

ffive

Conversation Conqueror
Jun 19, 2022
7,056
16,580
I don't really understand why go for lesbian path when it's literally a transformation/sissification theme.
What, exactly, is it that you don't understand? That some people might want their MC to have lesbian relationship as a girl in their play through, if their MC likes girls, as opposed to heteronormative one?
 
  • Like
Reactions: WeilBaum

RedSam84

Newbie
Apr 2, 2024
18
10
... I don't really understand why go for lesbian path when it's literally a transformation/sissification theme...
Where does it say that sissies can only love men. We literally had many decades of activism to allow people to openly love who they love. Don't start defining love into allowable boxes.
 
  • Like
Reactions: WeilBaum

ffive

Conversation Conqueror
Jun 19, 2022
7,056
16,580
Hmm, it seems that v0.17 has not only retained the squad bond bug, but it has added some more of them on top of it:

The variable is named csquadbond but these passages get it wrong and reference a non-existing variable:

Day 11 - Cheerleading 1
Code:
<<set $squadbond to Math.clamp($squadbond + 5, 0, 100)>>\
Day 12 - Hangout
Code:
<<set $squadbond to Math.clamp($squadbond + 5, 0, 100)>>\
Day 12 - Hangout TOD 2
Code:
<<set $squadbond to Math.clamp($squadbond - 5, 0, 100)>>\

edit: also, not a bug but a bit of inconsistency perhaps: in the passage "Day 12 - Game Cheerleader 4" while gossiping about what person MC is attracted to, picking Jessica will adjust femaleattraction +10, maleattraction -10, but admitting interest in any of the boys doesn't do the opposite, even though MC/player pretty blatantly signals here they do have interest in guys.

edit 2: if the player chooses to pretend to be a girl in talk with the coach, the game applies transgender changes twice, in two subsequent passages:
HTML:
// "Day 12 - Game Cheerleader 6"
<<elseif $d12coachmoore is 1>>\
//...
    <<set $transgender to Math.clamp($transgender + 5, 0, 100)>>\
    <<set $cisgender to Math.clamp($cisgender - 5, 0, 100)>>\
//...
// "Day 12 - Game Cheerleader 7"
<<if $d12coachmoore is 1>>\
    <<set $transgender to Math.clamp($transgender + 5, 0, 100)>>\
    <<set $cisgender to Math.clamp($cisgender - 5, 0, 100)>>\
I'm guessing this is probably unintentional and it should be happening just once.

edit 3: okay, not transforming after putting on a cheerleading skirt was already a bit funny/weird, but in this update, you can put on actual honest-to-god dress, and not just any dress but the most girlish dress there is, and it still doesn't cause a transformation? The curse if officially just fucking with us at his point. :whistle:

edit 4: okay, this is a bug, i think. If the transformation on Day 12 causes MC to develop visible breasts, the button "Address the issue" doesn't actually allow to "address the issue" like in all other instances, but continues as if nothing has happened:
HTML:
<<elseif $recentTransformation is "breasts2">>\
    <<set $afterEvent to "Day 12 - Game Cheerleader 2">>\
    You look down, realizing your boobs just grew. You gasp, realizing you can't hide them anymore. This is something you have to address.

    <<button "Address the issue" "Day 12 - Game Cheerleader 2">><</button>>
If i'm not mistaken that last line should be
<<button "Address the issue" "Event - Breasts">><</button>>
 
Last edited:

amaty

Newbie
Game Developer
Oct 5, 2024
38
149
Hmm, it seems that v0.17 has not only retained the squad bond bug, but it has added some more of them on top of it:

The variable is named csquadbond but these passages get it wrong and reference a non-existing variable:

Day 11 - Cheerleading 1
Code:
<<set $squadbond to Math.clamp($squadbond + 5, 0, 100)>>\
Day 12 - Hangout
Code:
<<set $squadbond to Math.clamp($squadbond + 5, 0, 100)>>\
Day 12 - Hangout TOD 2
Code:
<<set $squadbond to Math.clamp($squadbond - 5, 0, 100)>>\

edit: also, not a bug but a bit of inconsistency perhaps: in the passage "Day 12 - Game Cheerleader 4" while gossiping about what person MC is attracted to, picking Jessica will adjust femaleattraction +10, maleattraction -10, but admitting interest in any of the boys doesn't do the opposite, even though MC/player pretty blatantly signals here they do have interest in guys.

edit 2: if the player chooses to pretend to be a girl in talk with the coach, the game applies transgender changes twice, in two subsequent passages:
HTML:
// "Day 12 - Game Cheerleader 6"
<<elseif $d12coachmoore is 1>>\
//...
    <<set $transgender to Math.clamp($transgender + 5, 0, 100)>>\
    <<set $cisgender to Math.clamp($cisgender - 5, 0, 100)>>\
//...
// "Day 12 - Game Cheerleader 7"
<<if $d12coachmoore is 1>>\
    <<set $transgender to Math.clamp($transgender + 5, 0, 100)>>\
    <<set $cisgender to Math.clamp($cisgender - 5, 0, 100)>>\
I'm guessing this is probably unintentional and it should be happening just once.

edit 3: okay, not transforming after putting on a cheerleading skirt was already a bit funny/weird, but in this update, you can put on actual honest-to-god dress, and not just any dress but the most girlish dress there is, and it still doesn't cause a transformation? The curse if officially just fucking with us at his point. :whistle:

edit 4: okay, this is a bug, i think. If the transformation on Day 12 causes MC to develop visible breasts, the button "Address the issue" doesn't actually allow to "address the issue" like in all other instances, but continues as if nothing has happened:
HTML:
<<elseif $recentTransformation is "breasts2">>\
    <<set $afterEvent to "Day 12 - Game Cheerleader 2">>\
    You look down, realizing your boobs just grew. You gasp, realizing you can't hide them anymore. This is something you have to address.

    <<button "Address the issue" "Day 12 - Game Cheerleader 2">><</button>>
If i'm not mistaken that last line should be
<<button "Address the issue" "Event - Breasts">><</button>>
Some of these are fixed in later versions but some are not! Thank you for letting me know I'll check them out right now.
 
  • Like
Reactions: ffive

Dracostoc

New Member
Oct 10, 2020
11
11
Hmm, it seems that v0.17 has not only retained the squad bond bug, but it has added some more of them on top of it:

The variable is named csquadbond but these passages get it wrong and reference a non-existing variable:

Day 11 - Cheerleading 1
Code:
<<set $squadbond to Math.clamp($squadbond + 5, 0, 100)>>\
Day 12 - Hangout
Code:
<<set $squadbond to Math.clamp($squadbond + 5, 0, 100)>>\
Day 12 - Hangout TOD 2
Code:
<<set $squadbond to Math.clamp($squadbond - 5, 0, 100)>>\

edit: also, not a bug but a bit of inconsistency perhaps: in the passage "Day 12 - Game Cheerleader 4" while gossiping about what person MC is attracted to, picking Jessica will adjust femaleattraction +10, maleattraction -10, but admitting interest in any of the boys doesn't do the opposite, even though MC/player pretty blatantly signals here they do have interest in guys.

edit 2: if the player chooses to pretend to be a girl in talk with the coach, the game applies transgender changes twice, in two subsequent passages:
HTML:
// "Day 12 - Game Cheerleader 6"
<<elseif $d12coachmoore is 1>>\
//...
    <<set $transgender to Math.clamp($transgender + 5, 0, 100)>>\
    <<set $cisgender to Math.clamp($cisgender - 5, 0, 100)>>\
//...
// "Day 12 - Game Cheerleader 7"
<<if $d12coachmoore is 1>>\
    <<set $transgender to Math.clamp($transgender + 5, 0, 100)>>\
    <<set $cisgender to Math.clamp($cisgender - 5, 0, 100)>>\
I'm guessing this is probably unintentional and it should be happening just once.

edit 3: okay, not transforming after putting on a cheerleading skirt was already a bit funny/weird, but in this update, you can put on actual honest-to-god dress, and not just any dress but the most girlish dress there is, and it still doesn't cause a transformation? The curse if officially just fucking with us at his point. :whistle:

edit 4: okay, this is a bug, i think. If the transformation on Day 12 causes MC to develop visible breasts, the button "Address the issue" doesn't actually allow to "address the issue" like in all other instances, but continues as if nothing has happened:
HTML:
<<elseif $recentTransformation is "breasts2">>\
    <<set $afterEvent to "Day 12 - Game Cheerleader 2">>\
    You look down, realizing your boobs just grew. You gasp, realizing you can't hide them anymore. This is something you have to address.

    <<button "Address the issue" "Day 12 - Game Cheerleader 2">><</button>>
If i'm not mistaken that last line should be
<<button "Address the issue" "Event - Breasts">><</button>>
Are you going through all this using CTRL-U to view the pages source code, or are you accessing the Twine file somehow?

I ask because I've been trying a bit to learn Twine (Sugarcube) and would love to be able to cross reference files directly for figuring out things that I'm having trouble doing right now (ex, Sidebar tabs, "Hub" page setups, removing previously selected items from a page once visited without having to set and check variables, day cycles, variables displayed in bar format, weather, timeblocks, etc...)
 

ffive

Conversation Conqueror
Jun 19, 2022
7,056
16,580
Are you going through all this using CTRL-U to view the pages source code, or are you accessing the Twine file somehow?
Unfortunately, i can only check the game script in the html file. The source files are only available to the author. Although the content of the source files is all there in the .html file, just a bit more difficult to unwrap/parse.

edit: for most of these things you mention, i think you can check out game like Degrees of Lewdity. The source code for that one is .
 

MazTW

New Member
Oct 19, 2023
2
0
For the Dev. I think you should seriously consider putting paper doll and key stats in a side aligned pane as per default Twine SugarCube layout. Having the top aligned pull down and then having to click links to see anything doesn't work well. I appreciate that you tried something different, but it really detracts from the games presentation. Kudos on the nice styling otherwise though!
 

MonkeyFunk

Member
Oct 27, 2017
356
329
Thank you for making a transformation game which doesn't feel grossly fetishized, this game really got me in the feels and it was great having a safe place to accept those feelings, even if it's just in the fantasy of being 'cursed' by a witch. Please keep making this game
 
  • Like
Reactions: WeilBaum and ffive

KinkyPixy

Newbie
Nov 22, 2017
42
20
To the dev: Thank you so, so much for this. This game is basically the fantasy I've lived in my daydreams most of my life, without being the outright fetishization that a lot of these games fall into. This has hit me in the feels so hard on multiple occasions in the hour or two I've played so far that I've teared up more than once. I feel so bad that I'm not in a financial situation to be able to support you on patreon, with as much as I'm in love with your work. Please, please keep up the work on this.
 

amaty

Newbie
Game Developer
Oct 5, 2024
38
149
Unfortunately, i can only check the game script in the html file. The source files are only available to the author. Although the content of the source files is all there in the .html file, just a bit more difficult to unwrap/parse.

edit: for most of these things you mention, i think you can check out game like Degrees of Lewdity. The source code for that one is .
the game does have a git repo but it’s currently just me and a full stack developer on the discord who’s offered to help with the UI and programming. I am considering adding more collaborators though for bug fixing, proofreading, typo hunting, etc.
 
  • Like
Reactions: ffive

amaty

Newbie
Game Developer
Oct 5, 2024
38
149
Thank you for making a transformation game which doesn't feel grossly fetishized, this game really got me in the feels and it was great having a safe place to accept those feelings, even if it's just in the fantasy of being 'cursed' by a witch. Please keep making this game
I will most certainly keep developing it :) I’m so glad to hear the game was good for you
 

amaty

Newbie
Game Developer
Oct 5, 2024
38
149
To the dev: Thank you so, so much for this. This game is basically the fantasy I've lived in my daydreams most of my life, without being the outright fetishization that a lot of these games fall into. This has hit me in the feels so hard on multiple occasions in the hour or two I've played so far that I've teared up more than once. I feel so bad that I'm not in a financial situation to be able to support you on patreon, with as much as I'm in love with your work. Please, please keep up the work on this.
Wow I really appreciate your kind words! It’s fine that you can’t afford to support the Patreon, I appreciate everyone who enjoys the game and leaves comments :)
 
5.00 star(s) 5 Votes