does this include the play as the roommateWorking on ripping v1.17DLC. Should be done soon-ish.Done.
Yeah it's not very intuitive. Here's how i did it, start from dlc.html, write the code at the very start and press enter on your keyboard. If i try to launch the game from early.html the code doesn't work. Idk if it's correct, but it was the only way i could launch the game.Am I doing something wrong or is the game impossible to play? There are errors everywhere and nothing can be done View attachment 3356672
Just use the DLC one, ignore the Early one for now.Why are there 2 html files, do you have to play each seperately?
You can force it to start by entering SugarCube.Engine.play("Intro") into the console.Consider me re-educated, and sorry to say its not an amazing game, when you cannot even gain access to it
how do i make it work for alt start ?You can force it to start by entering SugarCube.Engine.play("Intro") into the console.
Thank you for your time and I appreciate you informing me of the bypass. Unfortunately after so many attempts I got frustrated by the whole process I deleted it from my system.You can force it to start by entering SugarCube.Engine.play("Intro") into the console.
Where are you implementing this F12 and then console?Couldn't find the code so I just did this to the code
window.hashStr = function(txt) {
if (txt === "xd") {
return -1052607321; // You can specify any hash value you want here
}
// Otherwise, compute the hash value as before
var hash = 0, i, chr;
if (txt.length === 0) return hash;
for (i = 0; i < txt.length; i++) {
chr = txt.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};
the hash string for the dlc is 1846033802
so set that instead of the first hash string, that was for the base game.