- Mar 9, 2018
- 288
- 143
Because this is a beta update. Some beta have only hotfix other have more content.Nothing much here. Guess we wait again.
Beta 1 - Beta 2 - Beta 3 - Beta 4 - final update.
Because this is a beta update. Some beta have only hotfix other have more content.Nothing much here. Guess we wait again.
Exactly. I didn't expect anything from this game anymoreGiven the glacial speed and current focus of development I don't feel this project is currently worth supporting. Maybe the dev will get things together this year and that will change. I certainly hope that's the case.
Endless redesign? I only see this on 0.2.0b1 and this is beta!!! so why you review beta update? why not wait for full update? to end of month?Exactly. I didn't expect anything from this game anymore
It's just an endless redesign of framework and no new content
In case anyone's wondering in the future:cheat code is "accelerando"
In case anyone's wondering in the future:
Since this is an HTML game, you can just edit the password checker to return "true" regardless of the password you enter.
Oh, right, some bugs:
- After getting the implant, if you try to watch porn when you're supposed to go to the office, you can get stuck with no "go back" option
- When you have "work over the weekend" as a quest, you still can't go to the office?
Also, some feedback:
The bit where Xavier just goes, "oh, you're totally making up this whole AI story to hide your homosexuality" kinda got me pissed off at him. (i.e.: resisting AVA because I was mad at Xavier)
I don't know if that was the intended reaction.
AVA hasn't said anything about it yet, so I'm reserving judgement on her side... but I think it would be pretty cool if there's opportunities for the PC to explain why they dislike something (possibly framed as AVA interrogating them), and for AVA to actually react to their answers, and work around those things like an intelligent system, rather than just ramming headfirst into them every time like "baby's first shell script" getting spammed with "Permission Denied" error messages every time it runs.
in this case, I took this function:how do you edit the password checker? ive got a well enough understanding to scour an htmls code for a password (sometimes) but how would you edit it to "true"? the majority of html games run sugarcube and (from what i can tell) they use a function that runs using cache data to store the cheat variable.
MindWare.checkPassword = function(password) {
return MindWare.revealSecret(password) ? true : null;
};
MindWare.checkPassword = function(password) {
return true;
};
huh... Ok I'll try that out thx.in this case, I took this function:
And changed it to this:Code:MindWare.checkPassword = function(password) { return MindWare.revealSecret(password) ? true : null; };
Of course, you can also just manually alter any part of the game pretty easily too,Code:MindWare.checkPassword = function(password) { return true; };
Such as making your landlord pay you rent.