4.30 star(s) 15 Votes

TheNextOne

Member
Apr 21, 2020
469
594
dumb question does the bell charm and the nipple bell the same thing ? if it's not then where is the bell charm ? i got the 2 cursed item and the nipple bell already.
Apparently you attach the nipple rings at any rest point (lantern w/e they are) and the effect is increased attack and jingles when walking. However, don't try that option BEFORE you get nipple bells - it will lock up the game.
 
  • Like
Reactions: Christin Eleven
Dec 22, 2021
85
52
I will make a new cheat in 3–4 days. If someone wants a cheat that works on all versions, please, tell me (I'll try to do a cheat like this).
I can't speak for others but I wouldn't say no to a all ver. cheat, if it's not going to cause a lot of headache/work to try to do. As speaking for myself, I don't mind using cheat engine, but if I have another option will go with that first. Also ty for working on the cheats for this.
 
  • Like
Reactions: Christin Eleven

60_hrt

New Member
Jan 12, 2024
1
0
i had that bug where you cant interact with anything and fixed it by restoring my config (control keybinds) to default by deleting Player_Config.sav in the game's appdata. i guess changing the controls causes it
 

Christin Eleven

Well-Known Member
Sep 3, 2017
1,190
513
I can't speak for others but I wouldn't say no to a all ver. cheat, if it's not going to cause a lot of headache/work to try to do. As speaking for myself, I don't mind using cheat engine, but if I have another option will go with that first. Also ty for working on the cheats for this.
Hell yeah!

Cheat engine is neat but it can struggle at times!

A simple cheat Mode that can be easilily activated and deactivated mid Game would be neat!
 
  • Like
Reactions: Eternal Nightmare

Brobat

Newbie
Aug 31, 2019
46
67
Guys, what are the 2 relics missing?

View attachment 4928905
Swordmaster's Ring and Seamtresses' Ring. Swordmaster's Ring is hidden in the Quarantine Zone in a secret room behind a painting that she comments on as hanging crooked just after you drop down (attack the painting to dispel the illusory wall). I don't remember where I got Seamtress Ring so it should be easy to find, probably in Linnea Road somewhere.
 
  • Like
Reactions: AlexDark1027

D0v4hk1n

Active Member
Oct 4, 2017
571
778
I think I'm gonna give this game a rest for six months or so.

The updates aren't adding enough content and I practically learned every corner of this game now so I'll just put it in the closet for now. In other words: see you guys next month lmao.
 

lonliwolf

Newbie
Jan 27, 2021
19
9
Hell yeah!

Cheat engine is neat but it can struggle at times!

A simple cheat Mode that can be easilily activated and deactivated mid Game would be neat!
Well actually, the Savedata is not serialised/encrypted, just a plain JSON in disguise, you can edit them with Notepad, all you have to do is just CTRL+F any keywords that contains specific item/buff/debuff then edit the value/boolean, no CheatEngine required.
 

Christin Eleven

Well-Known Member
Sep 3, 2017
1,190
513
Well actually, the Savedata is not serialised/encrypted, just a plain JSON in disguise, you can edit them with Notepad, all you have to do is just CTRL+F any keywords that contains specific item/buff/debuff then edit the value/boolean, no CheatEngine required.
Uhhh . . . way too complicated for me . . .

No idea what yo´re talkin about . . .
 

souldead341

Engaged Member
Oct 16, 2017
2,455
2,553
Uhhh . . . way too complicated for me . . .

No idea what yo´re talkin about . . .
I feel sorry that opening a file in plain text and changing simple values is hard for you. To be fair, not everyone knows where a unity or unreal game will likely store saves or what a boolean is, but it really is simple.

Saves are generally going to be somewhere in the appdata folder. In this case C:\Users\[USERNAME]\AppData\LocalLow\B-flat\Immortal Loss Beta 0.19.0\Save is the save location, though change [username] to your username on the computer. I'd recommend making a copy of the save, just in case you break something, easily done by crtl c and ctrl v the file. Then right click on the save and then click open with notepad.

A short section of the save file:
Code:
  "myInventory_00": {
    "ShockKernal": 7,
    "Anodyne": 3,
    "RepairHolyPowder": 4,
    "BirthControlPilula": 8,
    "PoorMemoFragment": 0,
    "GirlMemoFragment": 0,
    "HomewardBell": 1
  },
  "myInventory_01": {
    "PlagueDoctorCloth": 1,
    "VitaPantie": 1,
    "SteamEmissionDevice": 1,
    "IncompleteMetalForgingStone": 0,
    "TearsofTheGoddess": 0,
    "ReliefShard": 0
  },
  "myInventory_02": {
    "PlagueDoctorMask_Broken": 1,
    "S0208_HalfKey": 0,
    "S0004_HalfControlStick": 0,
    "S0112_HalfControlStick": 0,
    "NippleRingCharm_Bells": 1,
    "AbandonedFloorDoorKey": 1
  },
So, if I wanted to get a bunch of repair powder, I could just change the number after "RepairHolyPowder" to whatever I want.

A boolean is generally 1 for yes and 0 for no or true / false, so if you have a specific state or not like being pregnant.
 

lonliwolf

Newbie
Jan 27, 2021
19
9
I feel sorry that opening a file in plain text and changing simple values is hard for you. To be fair, not everyone knows where a unity or unreal game will likely store saves or what a boolean is, but it really is simple.

Saves are generally going to be somewhere in the appdata folder. In this case C:\Users\[USERNAME]\AppData\LocalLow\B-flat\Immortal Loss Beta 0.19.0\Save is the save location, though change [username] to your username on the computer. I'd recommend making a copy of the save, just in case you break something, easily done by crtl c and ctrl v the file. Then right click on the save and then click open with notepad.

A short section of the save file:
Code:
  "myInventory_00": {
    "ShockKernal": 7,
    "Anodyne": 3,
    "RepairHolyPowder": 4,
    "BirthControlPilula": 8,
    "PoorMemoFragment": 0,
    "GirlMemoFragment": 0,
    "HomewardBell": 1
  },
  "myInventory_01": {
    "PlagueDoctorCloth": 1,
    "VitaPantie": 1,
    "SteamEmissionDevice": 1,
    "IncompleteMetalForgingStone": 0,
    "TearsofTheGoddess": 0,
    "ReliefShard": 0
  },
  "myInventory_02": {
    "PlagueDoctorMask_Broken": 1,
    "S0208_HalfKey": 0,
    "S0004_HalfControlStick": 0,
    "S0112_HalfControlStick": 0,
    "NippleRingCharm_Bells": 1,
    "AbandonedFloorDoorKey": 1
  },
So, if I wanted to get a bunch of repair powder, I could just change the number after "RepairHolyPowder" to whatever I want.

A boolean is generally 1 for yes and 0 for no or true / false, so if you have a specific state or not like being pregnant.
Also i notice that the shock kernal always resets into 5 whenever you interact with the light pole
 

souldead341

Engaged Member
Oct 16, 2017
2,455
2,553
Also i notice that the shock kernal always resets into 5 whenever you interact with the light pole
It might have to do with the item you need to increase the base number. You can get items to increase the max amount you get by default, and the game likely checks that to determine what to reset your stock to. It's the same thing with the healing item. There's likely a different section of the save that sets the max, since the increasing items are TearsofTheGoddess and ReliefShard in the inventory section *(though if you increase those you can just turn them in to increase the max value).
 
  • Like
Reactions: Artix0

MaikeyHD

Newbie
Nov 7, 2019
37
46
You're obviously fine with tentacles, bestiality, and necrophilia as they're in the game, but a removable dick and homophobia is where you draw the line? Pathetic. You don't like futa/trans or gay content, fine. Just blacklist the tags, genius.
homophobia= fear of gays. I'm fearful of alot of things and gays aren't one of them lol. People can have preferences in a damn videogame lol
 

lonliwolf

Newbie
Jan 27, 2021
19
9
It might have to do with the item you need to increase the base number. You can get items to increase the max amount you get by default, and the game likely checks that to determine what to reset your stock to. It's the same thing with the healing item. There's likely a different section of the save that sets the max, since the increasing items are TearsofTheGoddess and ReliefShard in the inventory section *(though if you increase those you can just turn them in to increase the max value).
yeah, there was no other options than just re-edit the savegame every single damn time, if only it's not in il2cpp (instead of mono), it'll be esaier to mod it with UABE
 
4.30 star(s) 15 Votes