LeakCode

Member
Nov 30, 2018
361
307
Patch to fix some cards causing crash because action does not have card when they are skill insert (like sadism)
Sometimes currenctAction gets out of sync with afterItem (some cards trigger second effects with extra cards internally) and you end up being charged extra cost.
The author probably didn't have much time to properly code it to be thread safe and did a lot of cross state accessing.

EDIT: 2024-11-06 If you downloaded previously, please redownload, I caused a bug with the zero cost cards.
EDIT2: 2024-11-08 currentAction can be undefined when useItem is called outside battles
 
Last edited:
  • Like
Reactions: R34zone

R34zone

Newbie
Feb 9, 2020
49
5
Patch to fix some cards causing crash because action does not have card when they are skill insert (like sadism)
Sometimes currenctAction gets out of sync with afterItem (some cards trigger second effects with extra cards internally) and you end up being charged extra cost.
The author probably didn't have much time to properly code it to be thread safe and did a lot of cross state accessing.

EDIT: 2024-11-06 If you downloaded previously, please redownload, I caused a bug with the zero cost cards.
A bug when I use the items in the overworld. I'm not sure if it's caused by the bugfix
 

ich0

Member
Dec 14, 2018
164
93
It is a long time since I played this game and I wanted to see if the developer did more games. The only thing I found was a hint to a dlc. Does anyone know more?
 

Moldorth

Newbie
Mar 21, 2021
26
13
The ending is satisfying, the game is kinda wholesome,
There seems to be an animation for this game, I'll check it out now.
I hope the developer releases some other game in the future, I guess I'll buy this game if I don't see a deal soon in Dlsite.
 
May 12, 2022
303
298
I would like to say here that this game has definitely stood the test of time, but I'm starting to hate the lack of an autosave. I was at Level 12 with a very decked-out build, ready to kick ass and take names, but when I got to the Tentacler area and I got into a fight, the game fucked up with a black screen that looked like it got hit with pixel damage. This also affected my entire computer, forcing me to restart so certain things didn't look too corrupted to read or press on. The last time I saved was at level 5. I love this game, but the fact that I lost hours of progress to an issue I couldn't have anticipated is beyond frustrating.
 

Frosty713

New Member
Mar 28, 2025
5
1
For anyone trying to play this game on JoiPlay.

Whet I launched the game all was fine. On my Redmi Pad FPS was about 80. There was some lagging in sound but it was acceptable.

And then I faced the issue: when my character was approaching interactable objects (such as chests and flowers) FPS suddenly dropped to 2.

I've found it was because of script highlighted interactable objects named NearEventSensor. Its description only says its function is to highlight events (white glowing). So it should be safe to disable it. There's how:

0. Add game to JoiPlay normally;
1. Long tap on the game icon to get drop-down menu;
2. Choose "Edit plugins" option;
3. Find plugin named "NearEventSensor" and disable it;
4. Save changes.

Now there's no longer glowing highlighting in game but chests are obviously interactable and gatherable items also have icon above them showing it is gatherable object. So I've found no inconveniences after disabling this plugin.

P.S. If anyone knows how to fix lagging sound, please share it with me.
 
  • Like
Reactions: Tampan02

Ayanokoji4

Member
Oct 13, 2023
120
22
For anyone trying to play this game on JoiPlay.

Whet I launched the game all was fine. On my Redmi Pad FPS was about 80. There was some lagging in sound but it was acceptable.

And then I faced the issue: when my character was approaching interactable objects (such as chests and flowers) FPS suddenly dropped to 2.

I've found it was because of script highlighted interactable objects named NearEventSensor. Its description only says its function is to highlight events (white glowing). So it should be safe to disable it. There's how:

0. Add game to JoiPlay normally;
1. Long tap on the game icon to get drop-down menu;
2. Choose "Edit plugins" option;
3. Find plugin named "NearEventSensor" and disable it;
4. Save changes.

Now there's no longer glowing highlighting in game but chests are obviously interactable and gatherable items also have icon above them showing it is gatherable object. So I've found no inconveniences after disabling this plugin.

P.S. If anyone knows how to fix lagging sound, please share it with me.
I launched the game through the exe file, and it was like a mini window 1/1, and they told me to launch the game through the html file, I didn’t encounter any more problems.
 
  • Like
Reactions: Tampan02

Frosty713

New Member
Mar 28, 2025
5
1
I've found the reason why some (most) of CG's are blacked out if you play through JoiPlay.

I've turned on logs and tried to play tentacle CG and got this logs:

2025/04/07 23:25:13 --> JoiPlay--> [.WebGL-0x6a02fb5500]RENDER WARNING: texture bound to texture unit 14 is not renderable. It might be non-power-of-2 or have incompatible texture filtering (maybe)? from line 0

As pointed out in similar issue here:


It is because there's limit for texture size of 4096x4096 for mobile devices. And for this particular CG it is 3946x5263 (you can find it in <game-folder>/www/img/spines/plant). And if you check it for the first transformation (<game-folder>/www/img/spines/leg) wich works fine it is and 3822x1739.

I didn't figured out how to fix it yet. Maybe it is possible to edit source code. If anyone knows how, please share.
 

Frosty713

New Member
Mar 28, 2025
5
1
I've found the reason why some (most) of CG's are blacked out if you play through JoiPlay.

I've turned on logs and tried to play tentacle CG and got this logs:

2025/04/07 23:25:13 --> JoiPlay--> [.WebGL-0x6a02fb5500]RENDER WARNING: texture bound to texture unit 14 is not renderable. It might be non-power-of-2 or have incompatible texture filtering (maybe)? from line 0

As pointed out in similar issue here:


It is because there's limit for texture size of 4096x4096 for mobile devices. And for this particular CG it is 3946x5263 (you can find it in <game-folder>/www/img/spines/plant). And if you check it for the first transformation (<game-folder>/www/img/spines/leg) wich works fine it is and 3822x1739.

I didn't figured out how to fix it yet. Maybe it is possible to edit source code. If anyone knows how, please share.
I've just dug deeper. 4096 is a device limit (it might be even lower on some devices and may be bigger in which case congrats on having no issues with this game's CG's). I don't see any means to overcome it without total overhaul of textures' system (or maybe there's someone who knows there's another methods).

So for ones who is going to play it through JoiPlay be ready for black screen on most CG's. At least you'll see dialogs and hear VA's voices and can imagine scene by yourself.
 

Terrec

Newbie
May 26, 2022
56
104
I've just dug deeper. 4096 is a device limit (it might be even lower on some devices and may be bigger in which case congrats on having no issues with this game's CG's). I don't see any means to overcome it without total overhaul of textures' system (or maybe there's someone who knows there's another methods).

So for ones who is going to play it through JoiPlay be ready for black screen on most CG's. At least you'll see dialogs and hear VA's voices and can imagine scene by yourself.
It's not a device limit, at least not on most phones, it's a webview limit. Google allegedly decided to double it to 8192 last year for Android 14 and later, but my phone is still showing the lower limit. And it would still be half of what's needed to show every scene, anyway. Maybe phones that have ANGLE as a graphics driver option can get the higher limit?

I posted a patch on the previous page to downscale the problem images - it'll probably look a little blurry, but it will look like something. Fixing it better than that would be way too much work for me, at least for this game.

Alright, here's an all-in-one of my patches just for Joiplay. Unzip it, then long press Succubus Connect in Joiplay and select Patch and choose the rga file. This requires at least Joiplay version 1.20.021, the version on the play store does not support loading patches.json from the game folder. (Actually, it looks like they finally took that down? I don't know why they didn't just update it...) You can find the latest release version of Joiplay on joiplay.org.

Summary of the patches:
  • Fix black scenes
  • Fix crashes when using the Sadism or Masochism cards
  • Allow proper scaling
  • Fix a crash on newer versions of Joiplay from an empty plugin file
 
4.20 star(s) 31 Votes