assasin1598

Newbie
Mar 5, 2021
18
7
That could just be Aubrey. She is the one we know of.
Than MC would say partner not Partners. Meaning there propably are some we dont know of.

Aaaand just for you i checked season 1. She dated a guy named Andy. He and Sam came to support MC at his football match and drives a blude Dodge. All said when you talk to Sam in the morning for the first time in Cordale.

Also something something Succubus would propably know how to orally pleasure someone really well...
 

Penfold Mole

Engaged Member
Respected User
May 22, 2017
2,916
6,654
Bear in the Night

W8 w8 w8, a scene here where you see Elijah and Dakota the white haired chick...it says something along the lines of "wow, i've never seen this girl be4...", what? Wasn't she introduced in season 1?
She was one of the participants of the wizards tournament, we have seen her multiple times already and we know who she is. Last time when MC saw her was at the train station talking with Naomi just before departure to spend the Christmas with the family.

I just got the same bug playing the VN version. Now it seems as if we haven't met her before.

There are two slightly different dialogs there in the script, in one we haven't seen Dakota before and in the other one we know her.
The other one gets selected in case a variable named Q_Samantha > 11 and the one we got in case it's not.

However, my Q_Samantha is None in season 2 and was 0 in the end of season 1. It means that the variable transferred somewhat correctly and the problem is not a wrong value of that variable.
So, I'm guessing, there should be at least one more condition there to select the other, the correct dialog option, in case there is the wizards tournament happening.

I made a kind of fix, that might* work correctly for the VN mode, by adding a new condition there or not game, so that in VN mode the MC also knows Dakota already:

Python:
label Intro_10_label:
    $ setMusic("")
    if hasattr(store,'Q_Samantha') and Q_Samantha > 11 or not game:
*However, I'm not completely sure that the MC knows Dakota in every possible VN path, so this may be a wrong condition to use in case there exists a VN path where the MC hasn't met Dakota yet.

__________________________
update 0.1
The same kind of problem is with the dialog about the mushrooms. Selection of the correct branch of the script depends solely on the Q_Lily variable there that in the VN mode is zero and the wrong dialog gets selected.

I applied the same kind of pseudo-fix to that dialog now, too:
Python:
    if hasattr(store,'Q_Lily') and Q_Lily > 5 or not game:
        ch_Name "{i}(Where mushrooms are as tall as trees...){/i}"
        show sc i_Intro_11_11 with my_dissolve
        ch_Name "{i}(Wait a minute! I got it!){/i}"
________________________________________
update 0.2
Added the same kind of fix to Sabrina Spellman's dialog about the mushroom forest

Python:
if hasattr(store,'Q_Lily') and Q_Lily > 5 or not game:
        show sc i_Intro_12_11 with my_dissolve
        Sabrina "You have my attention."
        Sabrina "I'm not sure if I will be able to help you, but I'll try."
        ch_Name "Remember that time you, Lily and I went to find some ingredients in the woods?"
________________________________________

**In case you have somehow avoided Samantha's and Lily's paths in VN mode, don't use this patch.

How to apply the fix:
To apply the fix just extract attached patch zip into the main folder (the root folder) of the game, where the game launcher files are.
In case you are using some mod or a fix to the same intro.rpy file, it will cancel out any previous changes there.

This fix is only for the Lust Academy 2 v1.2.1d, not for future versions. Use it only for playing in VN mode.
 
Last edited:
  • Like
Reactions: CircaAD

Bear in the Night

Active Member
Game Developer
Dec 16, 2019
878
3,424
Bear in the Night



She was one of the participants of the wizards tournament, we have seen her multiple times already and we know who she is. Last time when MC saw her was at the train station talking with Naomi just before departure to spend the Christmas with the family.

I just got the same bug playing the VN version. Now it seems as if we haven't met her before.

There are two slightly different dialogs there in the script, in one we haven't seen Dakota before and in the other one we know her.
The other one gets selected in case a variable named Q_Samantha > 11 and the one we got in case it's not.

However, my Q_Samantha is None in season 2 and was 0 in the end of season 1. It means that the variable transferred somewhat correctly and the problem is not a wrong value of that variable.
So, I'm guessing, there should be at least one more condition there to select the other, the correct dialog option, in case there is the wizards tournament happening.

I made a kind of fix, that might* work correctly for the VN mode, by adding a new condition there or not game, so that in VN mode the MC also knows Dakota already:

Python:
label Intro_10_label:
    $ setMusic("")
    if hasattr(store,'Q_Samantha') and Q_Samantha > 11 or not game:
*However, I'm not completely sure that the MC knows Dakota in every possible VN path, so this may be a wrong condition to use in case there exists a VN path where the MC hasn't met Dakota yet.

How to apply the fix:
To apply the fix just extract attached patch zip into the main folder (the root folder) of the game, where the game launcher files are.
In case you are using some mod or a fix to the same intro.rpy file, it will cancel out any previous changes there.
Hey!
It's not really a bug, we decided to do it this way.
But we already changed it in the next version for those who didn't transfer their saves
 
  • Like
Reactions: Penfold Mole

Penfold Mole

Engaged Member
Respected User
May 22, 2017
2,916
6,654
Hey!
It's not really a bug, we decided to do it this way.
But we already changed it in the next version for those who didn't transfer their saves
Umm, I'm not sure what you mean.
You did it that way because the MC now has a sudden case of amnesia and forgets that he knows Dakota and also about the huge mushrooms? Or did you add a condition there that will fix MC's amnesia in the next update?

BTW, I did transfer my save file, as I mentioned already.
It's just that the Q_Samantha and also Q_Lily are zeroes in VN mode in the season 1 finale and to play back the correct branch of the script there you would need an additional condition to select the correct branch of script.

Well, I guess, we'll see what you did there to fix it.

Thanks!
 
Last edited:
  • Like
Reactions: darkingthoe6

Daquarius

Newbie
Jan 23, 2018
84
68
When I used my season 1 save the game ends right after saving Ashley from the demon. When I don't use the save, It goes much further.
 

Gagge89

Member
Apr 24, 2020
320
125
Hello Bear in the Night
I have a problem. I uploaded the saves from chapter 1 to chapter 2 last update a month ago and everything was fine.
Now I have downloaded the new reality and loading the last save the game goes very fast (as if I hold down CTRL but I am not doing it) and it is impossible to stop it. He's kind of gone mad. It stops only as soon as I meet the first choice and immediately after choosing it starts again very fast. In this way it is UNPLAYABLE. But how is this possible? Can you solve?
 

Bear in the Night

Active Member
Game Developer
Dec 16, 2019
878
3,424
Umm, I'm not sure what you mean.
You did it that way because the MC now has a sudden case of amnesia and forgets that he knows Dakota and also about the huge mushrooms? Or did you add a condition there that will fix MC's amnesia in the next update?

BTW, I did transfer my save file, as I mentioned already.
It's just that the Q_Samantha and also Q_Lily are zeroes in VN mode in the season 1 finale and to play back the correct branch of the script there you would need an additional condition to select the correct branch of script.

Well, I guess, we'll see what you did there to fix it.

Thanks!
Could you send your save file, we will check the problem. Maybe we miss understanding each other
 

Penfold Mole

Engaged Member
Respected User
May 22, 2017
2,916
6,654
Could you send your save file, we will check the problem. Maybe we miss understanding each other
Do you mean the last save file from season 1 that I transferred to season 2 or the first save file from season 2 or both?

Hello Bear in the Night
I have a problem. I uploaded the saves from chapter 1 to chapter 2 last update a month ago and everything was fine.
Now I have downloaded the new reality and loading the last save the game goes very fast (as if I hold down CTRL but I am not doing it) and it is impossible to stop it. He's kind of gone mad. It stops only as soon as I meet the first choice and immediately after choosing it starts again very fast. In this way it is UNPLAYABLE. But how is this possible? Can you solve?
First and most important would be to mention if you are playing the VN mode or game (sandbox) mode?

Are you sure that you haven't touched your Tab key accidentally? It toggles on and off the skip/fast forward mode, as if you were holding the Ctrl key. Because it kind of sounds like you have.
Your Ctrl key isn's getting stuck by a chance?
Have you tried it more than once?

In case you played it in VN mode, was the save file you transferred from the very ending of the season 1, after the train left the station and you ended up on the character stats screen or some earlier point in the game?
 

Bear in the Night

Active Member
Game Developer
Dec 16, 2019
878
3,424
Hello Bear in the Night
I have a problem. I uploaded the saves from chapter 1 to chapter 2 last update a month ago and everything was fine.
Now I have downloaded the new reality and loading the last save the game goes very fast (as if I hold down CTRL but I am not doing it) and it is impossible to stop it. He's kind of gone mad. It stops only as soon as I meet the first choice and immediately after choosing it starts again very fast. In this way it is UNPLAYABLE. But how is this possible? Can you solve?
Check your in game settings, like text speed
 

Aryan.22

Member
Jan 5, 2022
150
92
hello I am facing a game breaking error for Season 1 v0.7.1f.
1657725514795.png

As soon as I press the ignore button on the option in screen-shot, the error log attached appears. There is also no option to ignore the error. I have installed the scrappy mod for season 1 from 1st page. I downloaded the game yesterday, so saves r brand new.

i can't proceed with the game anymore due to this issue. Can anybody help me??

scrappy seems like a mod bug
 
Last edited:

Bear in the Night

Active Member
Game Developer
Dec 16, 2019
878
3,424
hello I am facing a game breaking error for Season 1 v0.7.1f.
View attachment 1923527

As soon as I press the ignore button on the option in screen-shot, the error log attached appears. There is also no option to ignore the error. I have installed the mod for season 1 from 1st page. I downloaded the game yesterday, so saves r brand new.

i can't proceed with the game anymore due to this issue. Can anybody help me??
Yes, don't use mods
 
  • Haha
Reactions: JackMiejov

dumbeldor2001

New Member
Feb 27, 2019
3
2
Hello everyone
Thanks for the great work. I finally transferred save file from version 1 and started playing the new version (2-1.2.1d-pc). But there is annoying error message saying setMusic is not defined in different files. Every time I have to ignore the message to continue. it is so annoying. any help to resolve the issue is most welcomed. thank you.
 
Dec 20, 2021
203
103
Umm, I'm not sure what you mean.
You did it that way because the MC now has a sudden case of amnesia and forgets that he knows Dakota and also about the huge mushrooms? Or did you add a condition there that will fix MC's amnesia in the next update?

BTW, I did transfer my save file, as I mentioned already.
It's just that the Q_Samantha and also Q_Lily are zeroes in VN mode in the season 1 finale and to play back the correct branch of the script there you would need an additional condition to select the correct branch of script.

Well, I guess, we'll see what you did there to fix it.

Thanks!
Same thing happened to me and I lost my mind when he said that he'd have remembered if he saw someone like Dakota and acting like nothing when Arthur mentioned mushrooms..
 

Bear in the Night

Active Member
Game Developer
Dec 16, 2019
878
3,424
Hello everyone
Thanks for the great work. I finally transferred save file from version 1 and started playing the new version (2-1.2.1d-pc). But there is annoying error message saying setMusic is not defined in different files. Every time I have to ignore the message to continue. it is so annoying. any help to resolve the issue is most welcomed. thank you.
Did you use mods?
can you send a screenshot of this error and your save file?
 

ILoveSucuk

Newbie
May 2, 2022
52
45
Wow. Just the Prologue and it already has Plot Issues:

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

All this with a transfered Savefile from 0.7.1f

I really hope the Plot Issues will be fixed in later Versions, for People who start with imported Savefiles.

It is minor - but still annoying and slightly immersion breaking.

Anyway, good luck with the VN. I hope you find a way to take care of future oversights from now on. Maybe find a Betatester if possible.
 
3.80 star(s) 159 Votes