Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Bentley23

11
Posts
A member registered Mar 12, 2023

Recent community posts

But id

I am so happy I have this extension of translation


You just have an old computer

Sorry, you meant you completed the same ending twice? If so, yes, you will get another file of the same.

No, but don't delete it

Probably delete the game and reinstall it

...

You kinda have to save the file right after you close the game... (Great job! Now you have to REDO tho whole game again just because you don't have a back up!)

yes, but Idk how to (but he knows)

(1 edit)

Thank you.

497885858823205020818889782092888678888778207982877792209381829220867892

9274807823205020968285852076817487807820787476812085789393789120887920938

1829220867892927480782093882074208794867578912092882081782076748787889320

9178747720829323206088202323232320827920748798888778208292209178748585982

0917874778287802093818292201427442050209674879320988894209388208487889620

9381749320789578919893818287802082922087889320968174932082932092787886922

3205578957891209391949293208182862320497820829220869476812093918276848278

9120748777209286749193789120938174872098889420938182878423205079209888942

0778820789578919893818287802074922081782096748793921427442081782076748720

8078932082877691787782758578208988967891142744207487772081782084878896922

0747588949320829320232323209381782086889178208974919382768578922088792076

8877782081782074759288917592208287938820818286927885791427442093817820868

8917820898896789120817820807893922320648293812093817493208988967891142744

2081782076748720778820748798938182878020828792827778209381782080748678202

3232320768174878078209381782092889491767820768877781427442076817487807820

9381782093789793949178921427442074877720968891929320887920748585142744207

4777720877896209574918274758578922023232323232323209381749320867874879220

2323232320817820767487208078932082879388209888949120768886899493789120938

1918894808120938178208074867820232323208582847820742023232095829194922320

5079209888942081749578207485917874779820757880948720938820878893827678207

6817487807892208287208182922075788174958288911427442093919820938820747676

7892922093817820768887928885781427442074877720789174927820748585209381782

0899188809178929223206491829382878020968178917820938178207688879288857820

8292208588767493787720968285852075782095789198207774878078918894921427442

0757876749492782096829381209381829220898896789114274420502074862074799174

8277209381749320817820968285852075782074758578209388209391748792857493782

0789578872093818292209378979323206191982093882079828777209381782076888792

8885782075787988917820232323208178207982877792208293232061817493142732922

0748585232048888877208594768423142844759114274714284661817820897492929688

91772020829214284220(The random code for console is the last 5 digits)


Decoder of USELESS TEXT.js

(1 edit)

This is some useless text, I can't read it anyways, I hope you can find a use for it. I was gonna delete it anyways.

Title of file: "???.js"

'use strict';

const fs = require('fs');

let workspace = 'D:/workspace';

let lines = fs.readFileSync(`${workspace}/USELESS TEXT.txt`).toString('utf16le').slice(1).split(/\r?\n/g);

// Key for the decoding process.

let key = 23;

let x = 0;

let str_in = '';

for(let i = 0 ; i < lines.length ; i++)

{

  if(lines[i].length >= x)

  {

    x = lines[i].length;

    str_in += lines[i];

  }

  else

  {

    str_in += lines[i].slice(0, -5);

    let code = lines[i].slice(-5);

    let str = '';

    for(let j = 0 ; j < str_in.length ; j += 2)

    {

      str += String.fromCharCode(parseInt(str_in.slice(j, j + 2)) + key);

    }

    str += code;

    console.log(decodeURIComponent(str).replace(/\+/g, ' ').replace('<br/>', '\n'));

  }

}