Mod Ren'Py FurrHouse Multi-Mod [Chapter 14][RiamMar]

CyBeRd0g

Newbie
May 13, 2018
68
147
A minor correction.
1st option of the 1st choice in the game. I checked 'cause the numbers seemed illogical.
Game code (script.rpy):
Python:
        "Let Asha finish":
            $adj('dom',-1)
            $adj("daisy",-1)
            $adj("sand",1)
Mod code (script.rpy)
Python:
    modCore.addInfoAboutVariables ({
        "script" : {
            179 : {
                "Let Asha finish" : { "[mc]" : { _("Domination") : -1 }, "[ModCharacterSand]" : { _("Respect") : -1 }, "[da]" : { _("Devotion") : +1 }, },
Daisy and Sand values seem to be swapped
 
  • Like
Reactions: RiamMar

RiamMar

One Hand Clapping, Heart of the Keyforge
Modder
Game Developer
Sep 15, 2017
1,059
4,044
A minor correction.
1st option of the 1st choice in the game. I checked 'cause the numbers seemed illogical.
Game code (script.rpy):
Python:
        "Let Asha finish":
            $adj('dom',-1)
            $adj("daisy",-1)
            $adj("sand",1)
Mod code (script.rpy)
Python:
    modCore.addInfoAboutVariables ({
        "script" : {
            179 : {
                "Let Asha finish" : { "[mc]" : { _("Domination") : -1 }, "[ModCharacterSand]" : { _("Respect") : -1 }, "[da]" : { _("Devotion") : +1 }, },
Daisy and Sand values seem to be swapped
Thanks for the report!
 

CyBeRd0g

Newbie
May 13, 2018
68
147
Noticed another one.
chapter_5_6.rpy
Python:
            1351 : {
                "Okay, sis" :  { 0 : { "color" : 1, "value" : _("Recommended") } },
                "What if I want it to go too far?" :  { 0 : { "color" : 1, "value" : _("Recommended") } },
            },
The second choice should probably be NOT recommended, because it leads to:
Python:
                "What if I want it to go too far?" :  {
                    "[arw]" : { _("Devotion") : -1 },
                    "[mc]" : { _("Diplomacy") : -1 },
                },
 
  • Like
Reactions: RiamMar

RiamMar

One Hand Clapping, Heart of the Keyforge
Modder
Game Developer
Sep 15, 2017
1,059
4,044
Noticed another one.
chapter_5_6.rpy
Python:
            1351 : {
                "Okay, sis" :  { 0 : { "color" : 1, "value" : _("Recommended") } },
                "What if I want it to go too far?" :  { 0 : { "color" : 1, "value" : _("Recommended") } },
            },
The second choice should probably be NOT recommended, because it leads to:
Python:
                "What if I want it to go too far?" :  {
                    "[arw]" : { _("Devotion") : -1 },
                    "[mc]" : { _("Diplomacy") : -1 },
                },
Fixed in next update. Thanks for the report!
 
  • Like
Reactions: CyBeRd0g

CyBeRd0g

Newbie
May 13, 2018
68
147
Khaled.jpg
chapter_7_8.rpy
You don't have permission to view the spoiler content. Log in or register now.
As I understand, in the mod the logic usually is that even if both options are good, none gets recommended :unsure:
 
Last edited:
  • Like
Reactions: RiamMar

RiamMar

One Hand Clapping, Heart of the Keyforge
Modder
Game Developer
Sep 15, 2017
1,059
4,044
View attachment 4570381
chapter_7_8.rpy
You don't have permission to view the spoiler content. Log in or register now.
As I understand, in the mod the logic usually is that even if both options are good, none gets recommended :unsure:
Yeah, I probably left them in to see if a later choice needs one of the stats more than the other and then forgot to remove them. The only thing that comes to mind on how that came to be.
Usually, if there's a recommendation of one choice, the other get a "Not Recommended" tag, so 2x Recommended is clearly™ "No recommendation at all". :D
 
  • Like
Reactions: CyBeRd0g

Vortex@

Active Member
Jun 28, 2022
703
2,073
Constant error after error, not sure if it's the vn or the mod causing it in 14 so I reported it in both. Starts in the room with MJ smoking. constantly after each click

You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:

RiamMar

One Hand Clapping, Heart of the Keyforge
Modder
Game Developer
Sep 15, 2017
1,059
4,044
Constant error after error, not sure if it's the vn or the mod causing it in 14 so I reported it in both. Starts in the room with MJ smoking. constantly after each click

You don't have permission to view the spoiler content. Log in or register now.
There's something wrong with your game installation. The missing transition should be in the games screens.rpy (within the scripts.rpa). Not sure how that happened to your installation, but it's not the mod. Your installation path also doesn't look like you overwrote an older un-rpa-ed installation...

You can try an see if the attached file fixes the issue. It's a separate file only defining the missing transition.
 
  • Like
Reactions: Vortex@

Vortex@

Active Member
Jun 28, 2022
703
2,073
There's something wrong with your game installation. The missing transition should be in the games screens.rpy (within the scripts.rpa). Not sure how that happened to your installation, but it's not the mod. Your installation path also doesn't look like you overwrote an older un-rpa-ed installation...

You can try an see if the attached file fixes the issue. It's a separate file only defining the missing transition.
thank you sir :)
 
  • Like
Reactions: RiamMar