HTML MindWare: Infected Identity [v0.3.3 Hotfix] [Subjunctive Games]

3.80 star(s) 34 Votes

youraccount69

I'm like a karate chop
Donor
Dec 30, 2020
8,765
4,002
436
MindWareInfectedIdentity-0.3.1
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
 

Usex809

Member
Mar 25, 2023
333
305
139
Here are some passages that I found interesting that aren't part of the main story:
HiveClean-SecondCleaning: The second cleaning of the latex maid.
SynTech Random Encounter 1: SynTech car guy.
SynTech Random Encounter 1 - Handjob: SynTech car guy wants some hand love.
FiredFromBrainFry: Corporate cog ending.
PsychologicalEvaluation1: First psychological evaluation for gender transition.
TransitionAppointment1: Another psych eval.
TransitionAppointment2: Yet another psych eval.
TransitionAppointment3: Psych evaluator becomes your mommy.
FirstHormonalTherapy: Your first hormonal therapy
Hormonal Therapy Masculine-Leaning Transformation: Some after therapy pill effects.
Fun fact, most of these passages were part of the story early on, they were part of the Stage 1. Basically, Transition Appointment is just watching some pics and taking harmones, dev most likely thought that it was not needed with AVA or just that it appeared too early, and they were indeed too early but they were in good place storywise, it went like this, MC was sent into psychiatric evaluation where Ava attacked and led MC to answer all questions feminine, and doctor then sent MC to transition Counseller of sort. They were boring passages too to be honest, glad they were removed, for now only because their content is still there in game file, yeah you are seeing this big of a game size but if you check properly a lot of content is for old story.
 

desertoo

Member
Dec 27, 2020
364
516
207
codebuddy charge you for the 7 day subsscription every 2-3 days

IF YOU CHOSE TO KEEP SEEING THE COUPLE AT EROSPHERE YOU GET STUCK IN A MESSAGE IT CANT CONTINUE AND YOU GET HARLOCKED
There was a site that i found in the note that i forgot, what was the site? It is something to found an easter egg in the browser?
 

reidanota

Well-Known Member
Nov 1, 2021
1,143
1,133
254
Is there a path to get laid with Trix? Is she in the game to reward resisting tf and debauchery, or does she like the MC more if he allows himself to be slowly transformed? Playing the game with her as a goal feels like I'm missing the point entirely, but then, why make one of the attractive female characters in the game unreachable?
 

karyu

Member
Mar 18, 2018
182
94
90
the game softlocks, there is a task " Meet Roderick and Sarah at EroSphere", the thing is even if you go to the bar there is no option to talk to them and the game doesnt allow you to sleep and move forward
 

bleppz

New Member
Nov 3, 2021
12
8
45
So is the end of the current version after you have the fem transformation dream? I'm currently stuck after meeting Trix's replacement at BrainFry and cannot go to sleep because it wants me to hack the Department of Records even though I already have used Trix's info.

the game softlocks, there is a task " Meet Roderick and Sarah at EroSphere", the thing is even if you go to the bar there is no option to talk to them and the game doesnt allow you to sleep and move forward
Yeah the same happened to me. The way I got around it was using the code, basilisk, to unlock the extra options and then use the go to passage function with RoderickSarah-EroSphere-Weekend.
 

Laura2022

Newbie
Dec 25, 2021
97
165
101
I tried to enter the code as you listed it and it just shows "false" and nothing changes. The message is still locked.
I'm using Brave Browser and I don't know if that affects the fix or not.
It shouldn't, it's all chromium based. Anyway, for now, you can just skip to the good stuff by pasting the following in the console:
Code:
SugarCube.Engine.play('RoderickSarah-EroSphere-Weekend')
 
  • Like
Reactions: ShadowSeth86

Bixbite

Newbie
Jul 12, 2019
43
136
209
Wow, what a cool game idea, let's check it out!
... a few minutes and 2gigs download later...
"This game requires internet connection to load components."
...
Sigh. Okay, never mind...
[delete dowload, ignore thread]
 

f96zonetrooper

Engaged Member
Dec 21, 2018
2,917
2,785
350
Wow, what a cool game idea, let's check it out!
... a few minutes and 2gigs download later...
"This game requires internet connection to load components."
...
Sigh. Okay, never mind...
[delete dowload, ignore thread]
In the html-file there is a function throwing this error message :

Code:
function loadCryptoJS(urlIndex) {
    if (urlIndex >= cdnUrls.length) {
        // All attempts failed
        console.error("Failed to load CryptoJS from all sources");
      
        // Show alert to user if SugarCube UI is available
        if (window.SugarCube && window.SugarCube.UI && window.SugarCube.UI.alert) {
            SugarCube.UI.alert("This game requires internet access to load necessary components. Please connect to the internet and refresh the page.", "Internet Connection Required");
        } else {
            // Fallback to regular alert if SugarCube UI is not available
            alert("This game requires internet access to load necessary components. Please connect to the internet and refresh the page.");
        }
        return;
    }
  
    loadAttempts++;
    var currentUrl = cdnUrls[urlIndex];
  
    var cryptoJsScript = document.createElement('script');
    cryptoJsScript.src = currentUrl;
  
    cryptoJsScript.onload = function() {
        console.log("CryptoJS library loaded successfully from " + currentUrl);
        cryptoJsLoaded = true;
        // Run any initialization code here
    };
The function is called only once :
Code:
// Start loading process with the first CDN
loadCryptoJS(0);
The list of tried urls is rather short :
Code:
// List of CDN URLs to try in order
var cdnUrls = [
    'https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js',
    'https://cdn.jsdelivr.net/npm/crypto-js@4.1.1/crypto-js.min.js',
    'https://unpkg.com/crypto-js@4.1.1/crypto-js.js'
];
CDN = Content Delivery Network
cdnjs is a free and open source CDN service. homepage :

Is there a reason why the ALL-version requires CDN service? Shouldn't the archive contain all the images, etc?
 
Last edited:

Laura2022

Newbie
Dec 25, 2021
97
165
101
In the html-file there is a function throwing this error message :

Code:
function loadCryptoJS(urlIndex) {
    if (urlIndex >= cdnUrls.length) {
        // All attempts failed
        console.error("Failed to load CryptoJS from all sources");
      
        // Show alert to user if SugarCube UI is available
        if (window.SugarCube && window.SugarCube.UI && window.SugarCube.UI.alert) {
            SugarCube.UI.alert("This game requires internet access to load necessary components. Please connect to the internet and refresh the page.", "Internet Connection Required");
        } else {
            // Fallback to regular alert if SugarCube UI is not available
            alert("This game requires internet access to load necessary components. Please connect to the internet and refresh the page.");
        }
        return;
    }
  
    loadAttempts++;
    var currentUrl = cdnUrls[urlIndex];
  
    var cryptoJsScript = document.createElement('script');
    cryptoJsScript.src = currentUrl;
  
    cryptoJsScript.onload = function() {
        console.log("CryptoJS library loaded successfully from " + currentUrl);
        cryptoJsLoaded = true;
        // Run any initialization code here
    };
The function is called only once :
Code:
// Start loading process with the first CDN
loadCryptoJS(0);
The list of tried urls is rather short :
Code:
// List of CDN URLs to try in order
var cdnUrls = [
    'https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js',
    'https://cdn.jsdelivr.net/npm/crypto-js@4.1.1/crypto-js.min.js',
    'https://unpkg.com/crypto-js@4.1.1/crypto-js.js'
];
CDN = Content Delivery Network
cdnjs is a free and open source CDN service. homepage :

Is there a reason why the ALL-version requires CDN service? Shouldn't the archive contain all the images, etc?
I modified the hotfix version the dev posted and removed the CryptoJS stuff entirely and made it so you don't need to enter any patreon code to access the cheat options.

Offline Version:

Problems I identified: Dev uses google fonts for a local copy in the .css and not a local font file, so offline, the fonts won't be as pretty. They also use font awesome for icons, and again, a CDN version, rather than a local one for the local download. As such, some icons won't display correctly. I could also patch all of that but I'm tired after work, if anyone would like that, just let me know.
 
Last edited:

xXAlitaBAXx

New Member
Aug 13, 2023
2
1
21
Hi folks,
One of my tasks where I have to work the weekend at Brainfry, I worked on weekend, but now its still on my task list and now its saying not open weekends to complete it??
 

Smellfire

Member
Sep 4, 2019
284
450
191
What a buggy mess. Shame, the premise is great.

The extra slow scrolling text and the having to hunt for various fixes just to get some pretty half arsed content is enough.

Shame, the start was pretty good and the general art was nice, shame it went down a trash hole of doom later one. Waste of many hours.
 
3.80 star(s) 34 Votes