• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

Cheat Mod Ren'Py Big Brother: Ren'Py - Remake Story - Cheat Mod [v0.5] [OnlyFunz]

Tigryss

Newbie
Jun 9, 2020
28
7
I found this in the code, but it's Russian. is there any way to get delivery, immediately? Console command like delivery true?

label home_dostavka:
$ SceneImageChange("e_delivery_1")
$ location[1] = "loc_pool"
other_emo_138 "Здравствуйте! По этому адресу на сегодня назначена доставка. Распишитесь?"
m_emo_0 "Конечно! А что тут?"
if "посылка_киры" in ivent24:
other_emo_138 "Так... В накладной написано следующее... Постойте, тут сказано, что это товар для взрослых. А вы что-то не очень похожи на взрослого..."
m_emo_3 "Да я взрослый! Просто, в трусах документы не ношу..."
other_emo_138 "Ну, хорошо. У меня всё равно времени мало. Так, распишитесь, но посылку не открывайте. Отдайте её некой... Кире... фамилию не могу разобрать..."
m_emo_1 "Всё верно, она у нас живёт. Давайте!"
m_emo_4 "{cht}Интересно, что же она там такое заказала... Тяжёлая коробка... Для взрослых... Нужно будет понаблюдать за ней, вдруг это что-то интересное...{/cht}"
$ ivent24.remove("доставка_товара_надом")
if "доставка_товара_надом" in ivent24:
other_emo_138 "И ещё..."
elif True:
other_emo_138 "Так... В накладной написано следующее:"

if "доставка_товара_надом" in ivent24:
$ SceneImageChange("e_delivery_1")
$ Dostavka("доставка")

if "посылка_киры" in ivent24:
$ ivent24.remove("посылка_киры")
m_emo_3 "Спасибо, до свидания!"
elif True:
m_emo_3 "Да, то что нужно. Спасибо!"

$ qtimevaract(time=0)
$ ListAppend(ivent24,["доставка_товара_надом"],remove=True)
$ JumpLoc("loc_home","loc_pool")
 
  • Like
Reactions: OnlyFunz

OnlyFunz

Active Member
Modder
Game Developer
Nov 23, 2017
757
4,837
I found this in the code, but it's Russian. is there any way to get delivery, immediately? Console command like delivery true?
I'll look into the code to check if the delivery is tied to any other function. Yes, most item/object names are in Russian.

I'll update you later today.
 
  • Like
Reactions: Tigryss

Tigryss

Newbie
Jun 9, 2020
28
7
I'll look into the code to check if the delivery is tied to any other function. Yes, most item/object names are in Russian.

I'll update you later today.
Thx OnlyFunz, I learned a bit Russian many years before, but not enough to understand... :D I thought I gave the code for chatGPT, but I don't trust HER... :DDD If I give her to many renpy code She will be maybe some degenerated manga hentai X monster.... :DDD But otherwise maybe I can replace my wife with her.... :DDDDPPPPP
 
  • Yay, new update!
Reactions: OnlyFunz

OnlyFunz

Active Member
Modder
Game Developer
Nov 23, 2017
757
4,837
Thx OnlyFunz, I learned a bit Russian many years before, but not enough to understand... :D I thought I gave the code for chatGPT, but I don't trust HER... :DDD If I give her to many renpy code She will be maybe some degenerated manga hentai X monster.... :DDD But otherwise maybe I can replace my wife with her.... :DDDDPPPPP
Which "item" is it? Rather than waiting for delivery. You can have the item directly in your inventory.
Did you check the "Console Commands List" in the Post #2?
https://f95zone.to/threads/big-brot...-cheat-mod-v0-2-onlyfunz.161526/post-10869114
 

Buraki2

Newbie
Jul 1, 2017
42
108
Me I'm trying to create a small mod, but when I try to use 'non-original' renders, I get an 'image not found' error. I'm trying to figure out why and I'm having trouble with it... The renders I've created have the same format, dimension... and yet they don't work. At the same time, I noticed that the name and location of the files do not matter much (because the original ones in other locations and with a different name work - after changing the code of course).

Is it some kind of security? Thought I'd ask you since you're making this mod.
 

OnlyFunz

Active Member
Modder
Game Developer
Nov 23, 2017
757
4,837
Me I'm trying to create a small mod, but when I try to use 'non-original' renders, I get an 'image not found' error. I'm trying to figure out why and I'm having trouble with it... The renders I've created have the same format, dimension... and yet they don't work. At the same time, I noticed that the name and location of the files do not matter much (because the original ones in other locations and with a different name work - after changing the code of course).

Is it some kind of security? Thought I'd ask you since you're making this mod.
I'm guessing you're trying to create a Mod for another game?

Some games use automatic image recognition script/function, that searches and finds the images inside "game" folder, then you can reference them directly.

Most games have "images" predefined inside. In such cases, you will have to re-define those image variables to point to your new images.

Only images under "game" folder will get picked up.. Also while referring to the image location..
you have to use like "gui/bar/top.webp"

Make sure to have the name case checked. If you have an image named "Buraki-logo", and you are trying to call an image "Buraki-Logo", it would fail.. (you notice the Captial "L" on logo)

Also, look out for the format of the image.. most images these days are ".webp"

If you can provide me a sample about what you are trying, i could look into the code and help you.
 
  • Like
Reactions: Buraki2

Buraki2

Newbie
Jul 1, 2017
42
108
I'm guessing you're trying to create a Mod for another game?

Some games use automatic image recognition script/function, that searches and finds the images inside "game" folder, then you can reference them directly.

Most games have "images" predefined inside. In such cases, you will have to re-define those image variables to point to your new images.

Only images under "game" folder will get picked up.. Also while referring to the image location..
you have to use like "gui/bar/top.webp"

Make sure to have the name case checked. If you have an image named "Buraki-logo", and you are trying to call an image "Buraki-Logo", it would fail.. (you notice the Captial "L" on logo)

Also, look out for the format of the image.. most images these days are ".webp"

If you can provide me a sample about what you are trying, i could look into the code and help you.

wow! You've already helped me! I had one capital letter in the filename...

:) Thanks! Now it is working.

For now, I'm not doing anything specific, I'm rather playing with the code, creating new choices and some simple events. Basically I was thinking about making a mod so that you can 'do' some events (when you get rid of Eric) in the NTR path. In a slightly changed form... we'll see what happens.
 
  • Yay, new update!
Reactions: OnlyFunz

OnlyFunz

Active Member
Modder
Game Developer
Nov 23, 2017
757
4,837
I can not open console with SHIFT + O
Pls help
Did you copy the Cheat Mod into the "scripts" folder? (If there is no game\scripts folder, you should create one)
Are you able to see the "Money" "+100" "-100" in the Overall Statistics Screen?
 

linhvn279

Newbie
Jun 16, 2019
42
4
What is the basic command to increase luck when peeking and command to increase luck when doing a job
 

OnlyFunz

Active Member
Modder
Game Developer
Nov 23, 2017
757
4,837
What is the basic command to increase luck when peeking and command to increase luck when doing a job
Most of these scenarios are with "random" values and chance.

As, you can see in the screenshot below:
Its a hard-coded Random value for chance. There is no way to change that with console command.

1689151416665.png
 

linhvn279

Newbie
Jun 16, 2019
42
4
I want to learn this level of Massage, what do I need to do? I do massage for Alice every day but I still don't know how much my Massage score is. Is there a way to make it grow faster? Thanks
 

OnlyFunz

Active Member
Modder
Game Developer
Nov 23, 2017
757
4,837
I want to learn this level of Massage, what do I need to do? I do massage for Alice every day but I still don't know how much my Massage score is. Is there a way to make it grow faster? Thanks
I think you will have to continue with Alice "Foot" massage. (5+ times or so)

Using Console codes, we can unlock it - But it could affect your game progress!

1689173913796.png

Check the value of:
walk_15.poss

Make sure the value is more than "6". If not, type in console
walk_15.poss = 6

Then, the Massage Skill level, needs to be checked:
max_massage_skill

It has to be more than "2", If not, type..
max_massage_skill = 2

Then Finally, check:
max_massage_feet_alice

It has to be more than "5", If not, type...
max_massage_feet_alice = 5

1689173785970.png
 

linhvn279

Newbie
Jun 16, 2019
42
4
Thank you very much. But I'm having the problem of not being able to give my mom a massage. What event can do that job. Even though my massage skill score is over 2
 

OnlyFunz

Active Member
Modder
Game Developer
Nov 23, 2017
757
4,837
Thank you very much. But I'm having the problem of not being able to give my mom a massage. What event can do that job. Even though my massage skill score is over 2
I think its best if you can ask in the Game's main thread:
https://f95zone.to/threads/big-brother-renpy-remake-story-v1-04-fix-4-porngodnoob.108701/

I'm not sure on which stats you are at, But i think you will have to complete "cunning plan" quest or something. You should make Ann punish Lisa/Alice at dinner time to raise Authority and get close to Mom.
You should also check the 'Game Hints' that shows.There is no way to change that in console - since the game code creates random value.
 

linhvn279

Newbie
Jun 16, 2019
42
4
My massage score is already over 100 but I still haven't been able to give the mother a massage. What is the unlock condition, I'm finding it pretty messy. Where can kiss points be checked? I've practiced with Aunt Kira a lot but still can't unlock with Lisa?
I think its best if you can ask in the Game's main thread:
https://f95zone.to/threads/big-brother-renpy-remake-story-v1-04-fix-4-porngodnoob.108701/

I'm not sure on which stats you are at, But i think you will have to complete "cunning plan" quest or something. You should make Ann punish Lisa/Alice at dinner time to raise Authority and get close to Mom.
You should also check the 'Game Hints' that shows.There is no way to change that in console - since the game code creates random value.
 

OnlyFunz

Active Member
Modder
Game Developer
Nov 23, 2017
757
4,837
My massage score is already over 100 but I still haven't been able to give the mother a massage. What is the unlock condition, I'm finding it pretty messy. Where can kiss points be checked? I've practiced with Aunt Kira a lot but still can't unlock with Lisa?
As, I had already listed out in the First post and updated the Second post for Console commands:
https://f95zone.to/threads/big-brot...-cheat-mod-v0-2-onlyfunz.161526/post-10869114

Under the spoilers - "Character Variable" and "Sex Stats", you have to use it together.

stat_liza.kiss

This should give you the points. In the same way, you can combine for other Characters.

To unlock with Lisa, the condition could be "stat_kira.kiss" having more than 4.
The game doesn't provide clear information on progress, searching thru the code gets tedious with each condition.

Maybe, when the Game gets expanded with more updates, I'll try to include more stats/details along with hints in my Mod.
For now, only the Console commands will get you numbers.