Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Bug Report Thread Sticky

A topic by Two_succubi created Mar 09, 2018 Views: 61,796 Replies: 429
Viewing posts 101 to 269 of 269 · Previous page · First page

the game stops allowing actions after meeting becca on the beach , i can hide the dialogue but i cant no do anything past that beside close the game.

Fixed it myself. Found prev version, 1.23 and played only beach event on my save. Than bought the dress, slept and voila! Run on newest ver and works fine ;)

Good job. Yeah this bug is new. You can fix it by using an older version to pass the bug. But scroll up some postings above. You can also fix it with a texteditor.

thank you for the help guys =)

Is there a fix for the becca beach bug on mac, without needing to use the previous version of the game?

edit save file.

linux/mac : ~/.godot/app_userdata/high school of succubus/saves or ~/.local/share/godot/app_userdata/high school of succubus/saves

use simple text editor or use hossaveed

Search for "beccareveal". Change it to "beccareveal":true

Can't play on android.When i click new game, game is shutdown. What should i do.

(1 edit)

Before i write nonsense here i tested HOS on Nox App Player on my Win 10 System.  This player emulates an android system. I have no problems with starting a new game in HOS. I could also do the complete tutorial without any problems. So this is definitly a problem of your android system. Have you read this?

https://itch.io/t/499321/running-hos-on-android

For a fast test that your system can handle the godot engine, you can try the first link there to test other godot based games.

Next step is to find your android version and your GLES-Version. Without more information about your system i can't help anymore at this stage.

My android system 6.0 and i tried godot-engine it's barely worked.GLES 3.1.Should work normally.

(3 edits)

Ok, that´s strange. This must be enough envirement to handle the gfx of HOS. Let´s make some more tests.

So you can start HOS and game shut down when you click New Game.

What happens when you click Load Game, Options, Credits, Quit?

I have also looked on my NoxAppPlayer Test Envirement, what seetings is there for my installed HOS Application. But didn´t find any useful information for now. My installed HOS App has no extensional rights like accessing external storage or so.

At the moment it looks like, there is a special condition when you click new game, that´s trigger this shut down behavior on you app. So our next step to identify this behavior is to find a way to avoid the newgame process or to find the reason what deals this shutdown.

If you can click load game we can try to find a way to start your HOS with a savefile.

Luckily you have Android 6.0, so you have an integrated file browser.

https://www.cnet.com/how-to/how-to-access-android-6-0-marshmallows-file-manager/

My Noxplayer is simulating Android 5.0. I need to search first a filebrowser app.

Why we do this. It'looks like your system has no problems with the gfx, so my next suspect is, that we have problems with file access or permissions?

Before i continue here, i need to know if you can click load game without a shut down.

I can click Options, Load Game, Credits and Quit there is no problem with that. But when i click New Game freezing and shutdown the game. I have no problem with permission. My all permissions enable. So i can click Load Game but no have any save game.

Ok, i need to find first a way to access HOS savefiles on android. No one has managed this before here in forum. Perhaps we make it? Need a filemanager app first for my android test envirement.

Ah damn you said it's barely worked. My english is sometimes not the best. What you mean with barely? Slow.

Do you have performance problems? Could this be you have to less cpu power or to less working memory?

If you google "godot performance problems on android" you are not alone.

It means worked but in the range of 10-20 fps. I tried Cubiventure(https://khairul169.itch.io/cubiventure)

In memory usage by apps "org.godotengine.highschoolofsuccubus maximum usage 758 MB". My last free space 587 MB. That's problem, right ?

(3 edits)

Yeah this could be the problem. Lack of memory mostly no coders handle this. So you have mostly a crash without any message from the application or system or you get some other error messages which makes no sense. Can you temporarily shut down other apps to free some memory?

(1 edit)

I did but using so much memory not enough.

I have no High School of Succubus files. I looked Android/data.

(4 edits)

I think i found the special situation.

When starting a New Game in HOS it takes some time bevor starting.

On my second test envirement with Memu emulator i had a popup meanwhile that the application don´t answer anymore. But i could continue only by negate the popup.

What if your system shut down the app, because the system means the app is crashed, but app is still working?

Starting new game process on my win envirement and on my android envirement takes about 7 seconds. Is your shutdown earlier? It could also be that your envirement need more then 7 seconds before start a new game. I try to work on a save file i could send you. Have your system a kind of automated shutdown for apps which working to long without answer?

Edit : Yeah i had another some seconds no reaction part during the intro, i mean i read here in bug report where players got stucked.

Have your system a kind of automated shutdown for apps which working to long without answer?

:I don't think so. If it was so, I would know. 

Starting new game process on my win envirement and on my android envirement takes about 7 seconds. Is your shutdown earlier?

:It takes almost 16 seconds.

I spend some more time trying to find my Android savefiles. But thats´s tricky on Android. You need to root your system first to have full access on filesystem. Rooting Android is a security risk, you also loose your warranty, some other apps could deny their work and updates could be more work to do. There is also a way without rooting by using the ADB (Android debug bridge) and control the Android from another computer. But i have noticed, when i start from a savegame it takes same time to start, so it´s no different here, if you start a new game or try to load a new game.

(3 edits)

There is an  "android app not responding timeout" of 5 seconds.

https://developer.android.com/training/articles/perf-anr.html

This is also a problem of coding, if you run timeexpensive code inside codeareas handling the gfx, like building a window and so on. The whole window build process is waiting for this timeexpensive code and the system reacts at some point. This problem could be fixed if you separate the "build windows process" from the "timeexpensive code" using different threads (multithreading) and then let the window wait till the timeexpensive code is finished. Normaly you do something like "please wait ...". This is a problem of the modern programming. You can't put long running code in objects like a window without "separating" it.

Looks like your cpu is to slow to handle this problem fast enough? Can you stop some other running apps to give your cpu some help?

Thank you for all. I tried root long time ago but didn't work. I deleted software and i uploaded. Its not work. You said codes but i can't do this. Sorry for waste of time.

(2 edits)

This code problem is nothing we can do. You need access to source code and rewrite some mechanics to work multi thread there. I also can´t say, if this is common for godot engine based games or if this could be fixed in game coding part. Normaly it should be fixed in game coding, but its´s more then to change a trigger. You need to learn first the mechanic and syntax of multithreading in godot.

https://docs.godotengine.org/en/3.1/tutorials/threads/using_multiple_threads.htm...

There is also some special in the conservation between multiply threads, so it´s also some more work to wait (sleep) in one thread till the other thread is finished. This is something we can´t do. You can only try to speed up your system or try to find a way to stop a shutdown.

https://www.howtogeek.com/183004/why-android-phones-slow-down-over-time-and-how-...

Have you old version link?

I have old versions up to HOS.19, but i didn´t think this will help you. You can also try very old versions running in browers. But i think its the same. If you google "highschool of succubus" you find a lot of links to websites "hosting" old versions of hos in browser.

(8 edits)

What happens if you try to pause HOS before the shutdown.

I am new to android handling, but programmed in past some code on android. I know there are some states for the app like pausing and resuming.

https://stuff.mit.edu/afs/sipb/project/android/docs/training/basics/activity-lif...

Is it possible to start HOS then start a new game and pause and resume it without coding? I mean you start new game, pause it by switching to another app. What happens then? I think godot engine handles the pause and resume events correctly. Perhaps this will make the HOS-Code part paused. If HOS app is not shut down, when starting a new game and pause it, this could be a way to jump over the problem, by pausing and resuming the app. But this is only theoretically.

Edit : I have used the mechanic to start a new game on my test envirement without "the app is not working" message triggering.

Try this -> Start new game in HOS. Then fast click another app. I used the Filemanager. Now you can wait. I waited 10 seconds on my try, you need to wait longer i think. Then click HOS back to work. I was instantly in first tutorial scene. This means the HOS time consuming code can work in background and when its finished you can switch back to the app and the gfx build process then is no longer slowed down.

Cant buy Party Dress

Version 1.26

You need corruption 200 and level 2 and meet becca at the beach and wait for her two calls to allow buying the dress. If there is a bug to buy the dress in version 1.26 (i need to wait before this version goes public), you can "cheat" the dress by manipulate the savefile. Use texteditor or hossaveed. It´s :  items->partydress->true

where can i play the version 1.26 with out downloading it

public downloads are here, you need to wait 3 or 4 days, till 1.26 is public.

https://two-succubi.itch.io/hos

if you can´t wait, patreon downloads are here.

https://www.patreon.com/hosgame

playing this game in browser "without" download, is only limited possible, if you search for high school of sucubus you find some sites hosting older version of HOS in browser.

i see

what about the one on newgrounds

If you look credits in browserversion there, it´s 1.24, public download link there is 1.25. But you are right, the browserversion there is near latest public version.

can you make kelly reach level three in the one on new grounds

(1 edit)

You ask questions. In 1.24 and 1.25 Kelly's max corruption level is 2 and I didn't think in 1.26 it's different. Kelly's max corruption on 1.25 is 300/level2. I think it was 200/level2 the version before. Think of next Kelly Levelup about 1000/level2 or higher? So it could be about seven more updates before this happens. I didn´t believe this happens before chrismas this year. Perhaps if you write a letter to santa and declare him your wish, this could help. ;-)

Hi, I've been a  fan of your game for months, even the black screens and everything didn't bother me because I found a way of dealing with those. But today I went online to see if there was an update (I play online on a computer --- Not mac) and I was happy to see one; BUT then it was impossible to load my game cause it was gone ?? I spent months playing that and now my file just diseappeared ? What can I do ?

(2 edits)

I will try to understand you. You can't play this game "online"? I think you mean you play it in a browser, also because of the blackscreen bug? Perhaps it looks like online, but your browser downloads the game data to your computer and start the game also there. Savegame data in browsergames are mostly stored in cookies. The Cookies are also stored local on your computer. Each browser stores his cookies on there own way, so you can't access a cookies from another browser. The update you mean to play is not really an update. It´s the next standalone version of the game. So now you have your old cookies with all your savedata from your playtime with the older version and the new version with a new separate cookie at this point mostly empty, because you didn`t played and saved here.

You can try to find your old cookiedata in your browser. It´s in options and there in security. But if you wanna look deeper in cookies, you need special programms. Google for "browse cookies" or "edit cookies".

Anyway i need about 4 hours playing this game new from start to end. You can also switch to a non-browser version of this game. If you are not playing on android you have no problems with your savedata then.

So you have 3 options. Replay the game. Replay a non-browser version. Try to restore your cookiedata.

Hiya,

Windows 64

Bug: I cant get the cosplay event to trigger, i have Viki at 400 corruption, i have catwoman outfit.

Thanks.

I have tested  HOS 1.27-Public. Max corruption for Viki on that version is 360 corruption. I have also tested buying catwoman outfit before viki is talking about her new batgirl costume. I have no problems to trigger the cosplay event. When viki reach 210 this triggers the new swimsuit event for her, speaking after this again with viki in school triggers the batgirl dialog in school. Buying catwoman costume and call viki from kelly´s home starts the cosplayevent with viki. If you meaned 1.28-Patreon, because you said Viki is 400 corruption, i currently can´t say, if there is a bug or not to trigger the cosplay.

I would love to play but every time I got play it crashes the Android version of 1.27

(5 edits)

That´s like my computer don't start, can you help me? You give no info, except the HOS version you have tried. Android is a pain. There are so many different versions. If your environment is to low you can´t run HOS. See here to check for your basic environment like android version and gles version.

https://itch.io/t/499321/running-hos-on-android

If you have problems on starting a new game, there are more problems if your system is to to slow or have to less memory. Read this thread some days above, perhaps you can bypass the "crash" by forcing hos temporary to background.

(1 edit)

my Android is 8.1 Oreo and I have gles 3 so I'm not sure and backgrounding it doesn't seem to help either when I hit play it will freeze for about 8 seconds go to a black screen for about 3 seconds and then I'm back in my apps list

Have you tested other godot games?

https://itch.io/games/platform-android/tag-godot-engine

yes I tried two of them and they opened and ran fine

You can try a tool like cleanmaster to clean your phone, to free some memory and speed up your phone? 

https://play.google.com/store/apps/details?id=com.cleanmaster.mguard&hl=en

HOS has some bad time expensive coding without reacting to OS, so OS could shut down the HOS app to early . You can also try a  browserversion of hos.

https://www.newgrounds.com/portal/view/710878

tried both the cleaner didn't seem to have an afect and the newgrounds one is not able to be played on mobile

(4 edits)

You can't say "global", that the browser version is not able to be played on mobile. But that´s a general problem on android. Android should be primary a phone os, not a high end gaming device. I think HOS has 2 problems on android systems. Memory and Speed. I read some more about ANR (Application Not respond).

https://techterms.com/definition/anr

There is a different between a crash and an ANR on Android, how the OS handle this. I think in your situation it looks more like a memory problem and a real crash. HOS has so much Artwork. App has some hundreds MB data. I can´t say how godot and HOS handles the memory when you start the app. But depending on the time before the game starts, there is a lot of data shuffled to a current running memory process. Also later in game, for example when you start a new game or load a game, there is a lot of coding working and memory usage again i think.

Found also this topic about reasons on android game crashings.

https://techbeacon.com/app-dev-testing/top-6-reasons-mobile-apps-crash-how-best-...

So it could also be a problem with newer Android OS. But my personal number one is missing memory.

There is also the possibility to connect an android device to a computer and log the crashes, but that wouldn't help you i think, it would only lead to the crash reason and could help the developers?

ok I guess I'll just wait for mobile hotspot to renew for the month and download it on my computer

(1 edit)

I "tracked" the memory usage from HOS on my Win10 System.

Starting App will use near the 300 MB on memory like the app usage on file storage space. Starting a new game or load a game will boost the memory usage to near 2 GB. I have readed at somepoint that memory usage from HOS on android system is enhanced, but we have still a lot of usage there, need to test this on android enviroment.

Public 1.27 Windows

Bug: Trying to cosplay either the witch costume or cat costume, but neither changes the appearance of Kelly.  Corruption is near 600 already.

Thanks

You can´t put costumes on manually. If you put them on in wardrobe, Kelly is still in non costume clothes.

Witch costumes is only for heloween party and cat costume is for cosplay with viki. Kelly uses this costumes automatically, when you reach the scenes for this costumes.

1.27 android several times events have triggered where I did not own the items that appeared in the event or triggered in the wrong order. The new years event triggering and resolving before I even did the halloween event. Brenda black mailing with a picture of Kelly using the massager and shool outfit before purchasing the massager. Being punished for not getting Kelly to have a dick inside her after the Halloween event where she did get a dick inside her. Being forced to do 2 Saturday punishments in one day, the one with Viki and the final one.

(2 edits)

Yeah, game has lots of logic bugs, but new year event is not connected to Haloween party, it´s connected to the Year End Orgy.

Wow, how did you manage to get the punishment so late after haloween party? Looks like you boosted your corruption?

Punishment is mostly 2 days behind sucubus lectures and invading john`s dram when reaching 370 corruption.

Halloweenparty is saturday behind ash call when reaching corruption 550.

I didn´t think they will fix most of your reported bugs. They didn´t fix such "minor" bugs. I have reported more then 100 of this "minor" bugs month ago. Perhaps with some luck they fix this ugly Saturday punishment logic some day?

Reporting bugs here is wasted time, except you report a very ugly crash bug perhaps?

Lets try one.

I managed to get the Halloween party to trigger within a few days, and I just went and the first thing I bought was the witch dress. I also had no idea what I was doing.

(1 edit)

Hangbug: entering cafe on last daytime on monday when girls end year party event is activated and champagner is bought.

Cant get to lvl 2. corruption even tho i have latest version.

So I'm at 1,000 corruption and I can't level up I have deleted and re downloaded the game multiple times what do I do?

newest version HOS1.30

Can't exit bar after working.

Didn't do anything special, after tutorial i went to college went to work and couldn't exit the bar.

Same issue on Android aswell

Does this game have a sound bug or does it just not have audio?

I can´t go to the Halloween event because I get a phone call from Brenda forcing me to go to her place and I miss the time slot.

HOS1.31-macOS-public.zip wont open on mac OS  Catalina, error message 'cannot be opened' appears 

V1.31, I have corruption 306, but I still can't buy the dildo, which says it only requires corruption 300.  When I try, she just says "that's too much."  Very frustrating since it seems like I need it to trigger the next event.  

(1 edit)

I encountered this bug in multiple versions. When I download game, straight from website and finish tutorial, the game instantly loads some files from my older save(which I don't know where it is) and prevents my from playing. Like it recognises all events as completed. On the first day I already have a drawer full of toys. Contacts and app don't work at all. How can I delete older game files/where are they stored?

Edit: I found it, deleted it and it works now.

I call Ash

game: spice things up, go to sex shop

<vibrator is at home, doesn't want to buy dildo because that's too much>

idk what to do anymore

I was also having this problem, with no avail.

(1 edit)

V1.32

I get 100 $ every time i click laptop 0: also, sometimes i get smartphone  with out any contacts.

Next bug i came along. In wardrobe clicking on sleepwear casue wearing underwear ;/ and i couldn't go to sleep!

(1 edit)

it says the dildo is too much even though im well over the funds and corruption is this a fixable bug?

the new years events happened the week before the halloween events for some reason. Ash said to buy a costume for Saturday but there was no event that weekend. The following week the new years stuff happened and the week after that the halloween stuff did. v1.32

(1 edit)

Stuck on the becca beach bug.  Somehow just couldnt fix it with texteditor solution( even no results for beccareveal)

as for the previous ver solution, I just have no idea where to download a new ver...

many thanks if you can fix it in next ver!

Desktop App Download links for Linux and MacOS are interchanged. Maybe you can fix this?

I really want to play this game but each time I click on new game it crashes to home screen on my phone. Any ideas?

Hi! I recently downloaded this game and got Kelly to 1000 points but nothing is happening? How do I get her to level 2? I read somewhere that something should happen during lecture but nothing does happen. It seems I'm stuck in grinding hell. 

on v 1.35, i got to the Saturday where the teacher wants you to come in for a makeup exam and all of those events start making me go back to back make up exams until i reach night time and become soft locked not being able to go to my home because of the make up exam but also not being able to go to the make up exam because its too late at night

Hiyo 

I have a bug on versoin 1.35 where if I go to the café the game just crashes

On version 1.35 I'm unable to call Ash to start the next thing. When I click on the button the UI just closes. The only time the text box appears saying "Kelly took out her phone and called Ash." Is when I've pressed the call button at all throughout the day and click the bed at the end to sleep and end the day then the text box appears as the graphic of Kelly sleeping is on but of course it disappears and nothing happens when she wakes up.

(1 edit)

Version is 1.36 and i chose new game after a few texts of dialogue it will just not proceed. Didn't crash cause music is still playing. Just the game refuses to go forward.

Update: Now I can't even pass the first dialogue

version 1.35, I have got to the weekend of the halloween and went to call ash which triggered night time and then monday morning, when I leave the house I get stuck in a  loop between clicking on the college for it to say "you can't go there, you need to go to the party" and then when I click on the party or any other location it says "you can't go there, you need to go to college"

You were suppose to trigger it on a weekend or Friday night to adviod that 😆. Srr for laughing. Did you even try to trigger it on Friday night or Saturday? Cause I triggered that and it was luckily a Friday and I went through fine.

yeah I tried to trigger it on a Saturday but didn’t realise I had an outstanding task with Ash, which then caused the loop

*facepalm* okay! So you know what you got to do now?

Are you just going to suggest restarting?

If all else fails I'm afraid so

Versin 1.36, I can't put on the costumes (for example schoolgirls) that I bought in the closet. Sometimes it says that I can’t get out in a bikini or I’ll get out but I’ve got the normal skirt back on.

(1 edit)

I had to restart the game, that's not a problem but the day of the first Halloween party Brenda called me and I couldn't choose between the two events, Kelly said I have to go to Brenda's and well basically the party skipped AND NOW the day after "the party" in the morning I have to go to school ofc but Kelly says I have to to the party and when I click Ash's building Kelly says I have to go lectures will start soon. SO BASICALLY I'M STUCK. I'm currently playing March's latest version, I don't know the number.

PLS HELP

can't help but it's version 1.36 if it is the March update.

well, thx for that.

Just tried downloading and playing the APK version. It loads up the menu but as soon as I touch new game it automatically shuts down. I'm assuming it has something to do with demands for ram but I'm not sure.

in the android game 1.36 and 1.37 why does Ash not come to work at the cafe after being hired, and what happened to the customer that lifts Kelly's skirt at the cafe. Is this deliberate or will it be fixed in next update? I have reinstalled more times than i have fingers.

Noticed that once Kelly purchases the egg toy, she can masturbate endlessly with it, at 8 corruption a pop. Also noticed that when I tried this, I took her from ~330 corruption to ~500 in *one night*, and this broke the game. The following morning, she had no actions that would work. She could dress herself, but she couldn't leave her room. Her laptop, drawer, and window blinds were inoperable. I had to reload. This time I won't masturbate as much...

Actually, correction. Morgarith's punishment at the hands of the other succubus in the dungeon is what appears to break the game. I'm totally stuck.

Loaded up a save before Morgarith's punishment. Went back to school even though I'd already been there. Went to another lecture, found the girls flashing gallery event, and then the double gloryhole event with Viki. Also bought a skirt for work. One of those things seemed to work--seemed to not trigger Morgarith's punishment that night. But what that suggests is that there are problems with non-obvious lecture sessions needing to be attended, that make it possible to trigger Morgarith's punishment... or something.

Made it through another day. Got John to make a pass at me at the restaurant. But then Morgarith gets punished that night, and it's game over. The following morning Kelly cannot leave her room. It's a really cute came, and I'd love to see it through to some sort of conclusion. But man, it's buggy. Can I send you a save game file from just before she gets punished?

(1 edit)

After I'm made to dominate Tirina and I'm sent back to Kelly, I can't click on anything but my phone and book. I'm stuck in my room and can't progress.

I did restart the game and it worked but that's something you might wanna look into and stuff

I, too, discovered that when game freezes, you can save Kelly in her room, and re-load that file, and she can continue.

I've noticed that if you are groped or ass-slapped on a shift at the cafe, you lose credit for that shift in terms of pay. Yes, you get a bigger tip. But it should still also pay you your $5 for your shift.

I am using the free Android version 1.37 after starting the game for the first time after the first two dialogue boxes, the game crashes. Please fix or tell me what I am doing wrong

You might post to their Discord server, too. There's a more active community there.

I'm on an Android and when I press new game it just crashes

(1 edit)

the newest Version (Android), and i got 2 bugs.

1. If 7 call Ash myselfe for the 2 or 3 time the game frezzes.

2. If i invade the guy in the library with the demon the game freuzes too.

I cant do anything and cant process any further. 

hey guys

so I noticed that sometimes the phone will flash pink for me to call someone but then it wont do anything. I  cant call anyone.

also the beach flashes pink but it wont go away after I go. also, is it normal thay after 1000pts of corruption- she wont go out with no underwear. she also wont get a new bathing suit or anything. kinda lost here

Phone flashing is broken. Better check unflashed Ash and Kelly in early game. Beach flashes vanish if you buy bikini and go once the beach. No underwear and bikini you need corruption level 2. Reaching level 2 is "best" hidden event in game. I found out, that most players didn´t use the fapp, because ot the broken phone flashing. When reaching 500 corruption, go home and click phone fapp button. Morgarith wants you to buy red underwear. This missing red underwear is in my opinion the most game reason, to stuck on 1000 corruption. You need the red underwear, so Branda can steal your panties and start the library event line.

the game crashes as soon as i press on new game..im trying to play on samsung j5 pro

Pleease respond i love to play this game

developers currently don´t support forum here. starting new game in hos, needs a lot of memory and also good cpu power.

you can try to free some resources on your phone by temporary shut down other applications. This forum has also some topics where you find some links to test other godot based applications and to test your enviroment.

man when i oprn this game game is kick me out

Mac version not working.
Looks like missing some files inside the Contents ( lib directory inside MacOS and autorun in Resources) that are needed to start the game.
Has anyone tested it out?

Version 1.41

Laptop Porn choosing dissapears everytime.

Hello, my gameplay gets stuck when i have to re take the class but its night time. I cant go totake the exam because its too late and she wants to go home but i cant go home because i have to retake the exam. I did the Viki retake of exam with 2vibes and then i got stuck. My version is 1.41 android public.

Good luck

Yeah stucking there is ugly. You can edit the save file to fix this bug.  Search for "daytime". Night is 5. Change it to 1 for morning, 2 for midday, 3 for afternoon, 4 for evening .

how do you edit a save file?

Game ver. 1.42. I retook the exam for Ms. Devis in the morning, after the exam I worked at the cafe until nighttime. I then tried to go home, but it didn't let me saying "I gotta retake my exam today". I also can't go in the college because it's nighttime. 

i know this thread is really old but i just got a really bad bug and i can't go back because the save is too recent. it's nightime and she is saying she needs to go to college for her lecture but when i click the school she says she is tired and wants to go home... what do i do?

(+1)

I am using the latest public build:

After reaching corruption 2000, Morgarith says that Kelly should be able to walk around without panties all the time now, But when i try to leave the house without panties, Kelly says she can't go out like that "it is too embracing".  After a few days I was able to leave the house without panties, but again after a few days, Kelly said she couldn't leave the house without panties again. Is this a bug? 

Possible bug with Viki leveling up. She’s almost at 1500 corruption but the level 2 event won’t trigger, I’ve been doing nothing new for weeks...I have the newest version

i got the same thing, funny thing is on the previous version i was able to progress past this point(kelly 2000 lvl 2 and viki 1000 lvl 1)but on this version (1.45) the game just glitches and doesn't progress for some reason. I know what events  im supposed to get (letter from parents that says i need to pay my own rent=>triggers events with becca which get me a job in the nightclub; letters from the couple watching me thhrough the window etc.) But they just don't happen , maybe there's a way to download previous versions? 

Version 1,45

I have a bug where when i peep on someone during PE class their portrait dont dissapear from the screen so i cant se the second part when they are in the pool.

A second bug is player and npc's talking about events that i havent done. during the new years party at my apparment they said i had sex with a guy while wearing a sexy outfit during halloween . i have not bought any sexy outfits and i have not had sex with any men yet. Also during the new years party i used toys and outfits i havent bought yet.

I encounter the following bugs on version 1.45:

1) Start a new game. Once the tutorial finish, waking up on the first day you get the following event with Becca, that should trigger much latter in game:

2) Starting a new game on the first weekend (every Friday, Saturday, Sunday) you get the following event message even if John has not invite you yet nor has the beach place open for you yet.

3) You could get the Vickie event on PE and also watch Vickie nude photos on her cellphone without getting an introduction to her on the dorms.

4) You get an invitation event for Christmas without having completed the Halloween event first.

5) You get the end of the year event for Succubus without occurring the Halloween event first.

6) You are allowed to wear no bra without having first the beach event with Ash that supposed allows you to not use bra.

7) You are allowed to trigger the second dorm event (the one you bring the sex toy) without having the event of buying your first sex toy nor having enough corruption to allow you to buy it.

8) You are able to get the hallowing event before you get the tentacle possession first. (The tentacle event is mentioned during Halloween event, that is why I deduced the order is wrong)

Hi! I'm stuck at Level 3, Corruption 200 in version 1.45. Please help!

Uh, so right now playing in 1.47 Idk how to proceed next. Going to the dorm it appear that Ash and Vikki dorm and it said"Door's locked.....the girls probably went out" I just don't know what to do next

Currently have Corruption level 3 and 500 exp. All I can do rn is going to school, work at cafe and work as Tequila girl

on my tablet, when i start the game i see a picture of morgarith and then come un full bugged screen

this screen:


I tried playing on my phone (Huawei p smart 2019) however everytime I click new game the game just crashes it might be a phone problem but I'm not sure

same happens to me every time

I'm playing the most recent android release, and after kelly was released from the succubus orgy, I was still in the orgy classroom. Clicking the mirror generated the message that she can't sleep she has to go to lecture.

Show post...

Had the same error, but I just clicked on the screen where the arrow usually is at home and it exited to the map, just like every morning.

Version 1.49

I have two events on the same evening, and I can't go to either. If I try to anywhere, I'm told to go to Rob and Emily's place. If I try to go there, I'm told to go the party at the dorms.

(1 edit)

the vibrator counter doesnt work, 

she can use the egg only once, but the counter shows 2/5

ther are not voices, only music

the version is 1.49 on desktop 64bit

In the top left corner is a  "No DC" notice. Is that important? have i gotten a wrong version?

I want wear the outfits and cant use any toys, cant make Kelly lvl 2 corruption, cant make the main events

I'm on 1.50 and experienced this issue with 1.48 as well. I bought the tail plug and now it won't allow me to progress at all. An empty dialogue box appears and won't move on until I click hide then unhide it. Then the last thing a character said will appear despite it having nothing to do with the situation. I can go home but thats about it.

v1.52 mobile 

When i click new game it go black screen home page,i manage to play it but it stops really quick,i have lot of free space ram too can u guys help by this one

since 1,50 i can't open the game it crasches and closes...opened a thread here but nobody noticed, so i'm trying to find my solution here

Version 1.52

After I went to the bar with Ash after Brenda called me, I can't go to Brenda's because I have school and vice versa.

Version 1.52

I am stuck at the Halloween costume. I try to put on the witch costume, but it goes over my normal clothes. There's no way to put it on and the start the event. I've done it in previous saves so not sure what is causing the glitch. If I get really unlucky, I get stuck on the swimsuit and get locked in a "can't go out like that" circle and have to force quit.

1. HOS 1.53

2. Clicking on Load to load the previous game and crashes

1. HOS 1.53

2. Clicking on Load to load Pervious game and then crashes

(+1)

I wish I could work on this project, I loved it. Here's some Viki's fanart. My email: astromelia@protonmail.com


(1 edit)

Game crashes to blank grey screen during first gloryhole event.

This is happening on latest HOS 1.54 android version (downloaded yesterday), although under credits it states 1.53 still.
I have this happen from time to time in other parts of the game, but this crash is unavoidable and happens after reloading from save or restarting the story.
Device is Redmi S2 with Octa-Core 2GHz processor and 3GB RAM

Bug Report version 1.54 for mac

once I finish school on Thursday the succubs won't let me do anything other than go to the sex show to buy a buttplug, it costs 150 but I only have 103 and it wont let me go to work or home or anything unless I buy the plug but I don't have enough money :(

Same problem but with less money. I found a work around it once by calling Ashe but the next week I got caught in it again

Game Version 1.54

it has three bugs: 1.) Won't let me change into my underwear 2.) try to go to the next day however it is still stuck on Thursday after doing other 'activities' 3.) you don't get the option to do sound when you click on it and exit out it still is not checked in 

hi im wondering if there is meant to be no sound there is no background music at all.

So I downloaded the file version 1.55, but when I put the file to install it comes to an end and says it was not possible and I have +/- 4G.

I downloaded the game on my android and everytime I try to begin my new game it crashes. 

(1 edit)

bought the Butplu but nothing happened. I can't find it anywhere to selcet, neither is any action triggering. The dialogue of opening the sex-shop when it first got released also starts everytime. 

Some way to fix it?

have same problem 

do you happen to know how to fix the glitch where the game crashes everytime you try to load in?

Hello, I found a bug on version 1.57

I've done retaking my exam with the teacher and now its night time, when i click to go home it says I cant because I need to take the exam but when I click on the school it says its too late and need to go home.

I can't download the lastest update...

Every time I try to download the game on my mac it won't open because it is damaged.

Same here

Newest Public Version (1.56)

Using mac and when I download and start up the game it says the file is damaged.

(1 edit)

Game Version: 1.57

Two Bugs: 1) In the beginning of the game it show's the MC's cellphone with blank characters, to get rid of it u have to click the button on the cellphone to get to the menu and once clicked again characters were restored to the screen.

2) after the boy's dorm event, when i clicked the arrow to the boy's dorm, then clicked on to meet Steve, no scene showed and fade to black, then only showed the dorm hallway with no way out until you exit out of the game by clicking on the X 

(1 edit)

1.58

Won't Open on Mac 

Game Version 1.58

Continuing the game from a previous save, I have reached a point where I can't click and do anything...

If I click on any building except the sex shop, Morgarith tells me "Kelly, we were planning to go to the sex shop!"

and when I click on the sex shop then Kelly says "I need to go buy a costume for the Halloween party!"

how can I fix that, please ?

Also, I made a mistake as I saved the game with the same slot and can't go backward...

Re-loading the saved game, or Turning the game off and back on, and loading the game save, has no effect to fix it.

(+1)

1. HOS 1.59 win64

2. Boys Dormitory Meet Steve 

3.  When clicking on the meet Steve we get to go to the section of the boy's dorm fade out, and fade in with no scene and no way to exit out of the dorm unleess we turn off the game 

actually you can call steve to get back to your room

(+3)

Version 1.60 public

Windows 64bit

Game crashes when I click on Load game.

It would only be possible to start new at the beginning.

(2 edits)

If you go through the tutorial again and open the menu and click on the Save/Load button and your save you can load in that save and pick up where you left off. Hope this helps till they can fix the bug

1.  1.60 OSX

2. First Training with Rachel. After the Sauna with Rachel the Game freezes

Also at a certain point i cannot use change room at the beach.

The new update just crashes. it wont load....

(+1)

in version 1.60 when i press the load button on the title screen the game closes so I cant access my previous saves 

sameee

If you go through the tutorial again and open the menu and click on the Save/Load button and your save you can load in that save and pick up where you left off. Hope this helps till they can fix the bug

I posted this a bit farther up im using this method till they can fix the bug

1. 1.60

2. Game crashes when clicking Load Game

(+1)

look at the post above for temp help

i need to buy the ancient goddess dress for the Halloween party, I do not have enough money but the game wouldn’t let me go to the cafe or nightclub to make money, it wouldn’t let me go anywhere, everything I try to go somewhere I get the « I need to go buy the dress for the Halloween party » message, except I do not have enough money, what do I do ?

1. 1.60 for Windows

2. Crash from pressing the Loading button

3. when clicking the load button it crashes instantly 

did you find a fix for this yet?

1. Android v1.60

2. It keep looping at the final section of Rachel's first tutorial.

Trying to load crashes the game instantly. I'm using version 1.60-win64. I started a new game yesterday and made a save, tried to load the save; opened the game clicked on 'Load' game instantly crashed and closed itself.

did you find a fix to this yet?

No, I haven't found a fix, just a workaround; load the game and start a new game, once you get past ALL of the tutorial stuff you can then load saves that you have without any problems. It's a Pain in the ass having to go through the tutorial every time, but it's the only thing that works.

I cant progress past LvL 1 Kelly I cant buy the catwoman costume for and I remember a Halloween party being talked about but it never happened is there any fix or would I just have to start over?

When starting a new game, it thinks I have already purchased some of the sex toys from my last playthrough.

do you happen to know how to fix the glitch where the game crashes everytime you try to load in?

The Game Crashes every time i try to load the game after starting it up, i can only click New Game. If i click Load Game then it crashes

Hello there

I ran into two bugs in version 1.62 and 1.61: 

first bug: I can't visit the gym anymore. The first sessions with both Rachel and the male trainer (forgot the name) were triggered, but after these two sessions, I could not access the gym anymore. I tried it on every weekday at every possible time. It always says "there is no need for me to go there".

second bug (maybe it has something to do with the first bug): the game does kind of not recognize, that I bought the gym outfit. I can buy the gym outfit and it shows up in the wardrobe. If I now exit the game, start the game again and load the latest save file, I can buy the gym outfit again. Even though the gym outfit is still in the wardrobe and the game reacts when I try to wear the gym outfit and leave the room.

I jumped from version 1.58 to 1.61 and did not play the versions between these two.

The magic wand tool can't be used for masturbation after purchase. It is only being used for the fap app. I'm using HOS1.63.

You may have already answered this, but when I installed the latest version, I made sure to delete my old saved game so I could start over. Tutorial runs through, I get to where I can make conscious choices, and then it flashes forward to events I know I shouldn't be able to see yet. While her corruption is still at 10, I'll go to class and it'll flash to her dropping her pen and bending over, no panties, to pick it up. Not possible, I couldn't even leave the apartment without them, so no. What should I do to wipe it clean from my system so I can play the game properly?

Bug Report!

Playing version 1.66 on macOS 13.0, no mods.

On a new game, playing pretty aggressively, game refused inputs (escape for menu failed, could not click stores, but right-click for history worked) when entering the shopping center after first pet play with Brenda and buying the cat tail, but before buying the cat ears.

I was not able to reproduce from autosave.

Assume there was some event logic that I missed loading the stores.

Classroom CG's that should show in corruption stage 3 show up in stage 1 instead, and not at all in stage 3.

(1 edit)

You have the Mac and Android versions mixed up in the downloads. That may cause issues with certain itch.io apps such as the desktop app and the Mitch app for Android. 

Game Version: 1.66

Description:

You got the files mixed up in the downloads page for the MacOS and Android versions. This can cause download problems in the itch apps for desktop and Android. 

Screenshot

The game lands in an endless "I need to redo my exams today" loop at corruption stage 2, in builds 1.66 and 1.67, leaving the game unable to be completed.

(1 edit)

You got the Android and MacOS downloads listed in each other's places. This might cause the itch desktop and mobile apps to download the wrong versions on MacOS and Android.


  1. 1.67
  2. When clicking on Blow Him in the cafe it freezes 

Im trying to download onto Mac. Once downloaded it wont even open.

The blowjob option in the cafe is bugged and does not allow you to continue through the option you have to hide and unhide than click the top option to get any response 

HOS 1.67 Linux 64

Had several times the problem that events triggert so i could not go to the helloween party. First one was an private Party from Becca

But it gets harder. this helloween an event from Emily to buy clothes trigered an it lastet till night. Now im Stuck. I cannot go to the dorm cause i have to buy clothes. I cannot go home cause i have to buy clothes and i cannot go to the shop cause it is too late.

(1 edit)

version 1.0 on andriod

Its now saturday en when i try to sleep i go to the end of the year school orgy. When thats done and i get back it is still saturday. En when i try to sleep i go to the orgy again. En when thats done its still saturday. So i cant sleep or do anything.

so there is an problem that spontaneous events prevents events that are on a fixed date or time. That events bevor got just missed, but this event dumped gameplay.

masturbation in front of mirror or window start the day again. 

(1 edit)

In each of the versions 1.66-1.69 there are points in the game where the game runs into endless loops. As a result, I haven't been able to complete any of them. And, in each of the versions, CG's that should show up at corruption level 3 in the classroom, show up on corruption level 1 instead.

PC Public version: I'm in a reset loop every time i try to get past the year end orgy I return to before I went. This has happened on two saves now

(1 edit)

I have that issues for several versions already, and it happens at different points in those versions.

using android version 1.68


Masturbating in front of window resets the day

And the scene where you first find Steve sitting in the far back of the class keeps starting, and then immediately fading to black, leaving me moved forward one sun phase, and with the normal 'what should we do today' prompt running.

Public Version 1.68+1.69

The first Year End Orgy gets you stuck in a time loop. So you're stuck at that event, endlessly clicking the bed to see an orgy without going to the next day.
I haven't attempted a new Save-file yet so both versions are the same save.

(1 edit)

On the latest mobile version 1.69, the stairs to the lecture don't work. This is after a fresh install right after the tutorial. Can't even progress at all. Disappointed I even downloaded this version because the previous one was working fine and I made decent progress. This is the second update where it will only install if I uninstall the old one first. It won't just update and keep my save.

Tried the version that was just uploaded. Still can't progress once the tutorial ends as the stairs don't work.

(+1)

Bug report 

v1.69 

some times when clicking on some thing, where there should come a text promt, it shows up empty, and i cant progress, because clicking dosn't do anything. i can right click and after some time i can do stuff again, but never the thing i intendted to. for example when going to class, when i click on the stairs, it shows the closeup of her, but with no text and i cant start class. 

Yep, got this too.

V1.73 i have found a workaround for this, when the textbox goes blank, hide it and then show it again with the button, then click, the last conversation will be displayed and then u can do thing again

1.69
i am stuck in loop after getting work at night club 

also having issue of lectures not working and having to call steve to get out of collage and continue play 

(1 edit)

hos 1.69 Android. After i first get control, first monday. I go to school and click the stairs to go to class and nothing happens. I get stuck in the hallway. The stairs respond to touch by getting a blue glow effect but nothing else happens. And i can click other areas but it just tells me class is about to begin.

The first posts in this thread are from 5 years back, and still the game is unplayably buggy. What the hack is going on?

(+1)

I'm having trouble just after the tutorial. When I'm meant to go to the college for the lecture I go there and can't find. I've tried going up the stairs but it won't let me. I've unistalled and reinstalled multiple times. (I'm on android btw)

yep same here. Thanks for confirming

estoy jugando en la versión 1.69 publica de Android 

Justo cuando acabo de terminar la introducción tengo que ir a clase y tengo que ir por las escaleras pero cuando lo toco no pasa nada y estoy atascado 

(+1)

latest mobile 1.7 version. Stairs in the school still don't work after the tutorial so it's still unplayable. This was reported in the Patreon 1.7 version before it was released to the public too a while back.

(+1)

Downloaded the newest version on Android and it won't even let me go to the first class not sure what is going on

I can't trigger the events to go to the gym. I found a note in my locker from the cheerleaders (not sure if it's related) but the related event never happened for me,

HOS ver 1.70

It keeps doing the cutscene where Morgarith wants Kelly to buy the buttplug but when I actually try to buy the buttplug, it won't let me because it thinks I already own it

Ver 1,70 Public

I bought witch cosutme for ash quest, but when I'm changing to it, and when I'm leaving the wardrobe and I'm back to my everyday clothes

pls hel

can you fix the android version? Its been months since this was reported and i still can't go to class on the first day.

seems like he fixed it. I got past week 1 on android

i got a new soft lock. In version 1.71 atleast on mobile/android all the exams comes all i one day. However you can't go home if you have an exam to take and you can't take an exam if it is night so the game soft locks. You should only have one exam per week and if you are forcing the player to do it, it should be early in the day and prevent the player from going anywhere but school.

v1.73 here,

found a workaround for blank textbox hide and show it with the button and then click it, it will display last dialogue/message and let u resume what u were doing

when opening photofap and having to choose your costume u can actually leave your home and do yours things, your have to be be on the boder up to a few pixel away but u can leave your room, go i the cafe, open the staff lounge menu, all of that with the menu still open, leaving the cafe does close the menu

not a bug but i would very much love to have a way to leave the photofap menu, for example when u want to check f u have unlocked a new costume/upgrade you are obligated to actually go on it and loose one time which might be detrimental

(1 edit)

V1.73. On android.

 when masturbating late at night so that the day changes from it, the day is not changed correctly. You can't masturbate again on the new day and some events does not trigger like exams.

v1.73. Mac. Cannot open game as it says "This application cannot be opened." No option to bypass anything.

your best bet is to get a windows emulator i guess, winebottler seems to do it pretty well, without you having to install a windows image https://winebottler.kronenberg.org/

still on android 1.73. When using suction dildo on window you can restart the day when using it late at night. 

Several events come in the wrong order. 

I still get all the exams in one day, managed to get by it by loading auto save and going to exams all day long. 

Some regular/repeatble phone events doesnt seem to work. Wasnt it possible to buy wine and call ash to hang out any day before? Now i only get progression events and that halloween thing where the 3 girls try on kellys outfits. I get that halloween scene every week or so and ive seen it atleast 6 times. Its nice to be able to see old scenes but some alteration would be nice.

v1.74 windows

Fresh save, Kelly goes commando on class first thing in the morning with pretty much 0 corruption, in the drawer at home all the dildos and vibs are unlocked without the need to buy them

1.74 Android

Gallery doesn't work, already owen clothes allow to buy

(1 edit) (+1)

v1.76 Linux
Seems to be the main menu. None of the the options work when clicked. The buttons light up but nothing happens. It works fine if I downgrade to 1.75

(+2)

just installed the 1.75 android version and when I go to press new game nothing happens

(+1)

Same as other two posts with windows(both versions) for 1.75 nothing happens when pressing new game. Buttons light up and nothing happens when clicked.

(10 edits) (+1)

I can't play the game on android. When I go to press New Game, the button lights up, but nothing happens.

I've also noticed that if you tap the Credits button on android, it claims to still be on version 1.74 despite having downloaded version 1.75

  • Game Version: 1.75
  • OS: Android 13
  • Device: Samsung Galaxy S20+ 5G
  • CPU: Qualcomm Snapdragon 865
  • RAM: 10.35 GB
(+1)

Same as the other few, can't play the game. New game or any other option just doesn't work.. patreon version (1.76) and public (1.75)


Tested on Xiaomi 13t pro (Android) and HP envy x360 13ar0xxx (Windows 11)

(+1)

Same for me (1.76 WIN64 ; Android)

still cant load or start a new game on android 1.75

1.75 

when pressing new game it stays on the menu other buttons work just not new game 

(1 edit)

It still doesn't work (1.76/WIN64) :( 

Some buttons on the start screen work already, but you can't start a new game or continue a save.

1.76 Android

Literally nothing works. Even patreon button 

"new game" button at start not working :(, linux.

So sad. A great game and it is unplayable since a month :(

the android version 

I could not select new game to actually play the game. I could tap any any other option on the main menu, but the one to actually play the game did not work making it currently unplayable on Android at the moment. 

(1 edit)

I downloaded the 1.75 version here on itchio for android but the credits say it is the 1.74 version. The real problem is that I can't click on "new game".

Also true for win64

(-1)

Oh damn, this game is still going?

Have you fixed any of the old bugs? I know there were dozens of issues with the female genitalia having incorrect models that were swept under the rug some years back. Is the game still about a female succubus that wants to be promoted to male, since ONLY males are allowed to have genitals, be dominant or be pleasured? I know this was a rather stupid, sudden "plot twist" in the original, and several succubi kept shapeshifting into males in order to be allowed to perform certain actions, since females were banned from performing them. Heck, that did apply to humans too. Except well... they couldn't turn into men. So they just ran into brick walls and did 180 personality flips.

Unsure if it's just me, but 1.75 win64 doesn't "start"
I get in the menu, but i can neither load something, nor start a new game, nothing happens.

Options open, but that's all. Also don't hear anything in the menu, unsure if there is just no sound, or if that too doesn't work.

(2 edits)

The game got broken in the last few updates and the developer isn't responding to this thread. At this point, I'm pretty sure the dev doesn't check this thread very often or simply doesn't care that the game is now completely unplayable.


Looks like the dev isn't responding in their Discord either. No idea what's going on but at this point it's probably safe to say that it is currently abandonware.

Can't Start a New Game with the Android Version it Just Instantly Softlocks Meaning there is No Game

"new game" button not working

Just to update. New release on Linux 1.77 seems to be working for me.

can you help me with a password pls?

1.76 windows

the morning of the first college exam on friday the halloween tentacle event happened and has kept happening each morning for about a week

(+1)

I had to enter her dream every night to prevent that from happening every day.

how do i enter her dreams? i'm not sure i got that far as i don't think i have that optio

1.76 Android

Game is playable (finally!!!), but gallery and achievements don't work (as always), bedside table doesn't work too. Problem with clothes still exists. You can buy them infinity times and they would still be available for buying. But it's allowed to use them even if they aren't bought.

Viewing posts 101 to 269 of 269 · Previous page · First page