Mod Ren'Py The Bite: Revenant - Walkthrough Mod [0.9302] [LightmanP]

4.00 star(s) 1 Vote

StingerWolf

Well-Known Member
Sep 5, 2017
1,270
1,765
LMFAO, you made a mod for a game you didnt create and hide it behind a paywall to make money. Thats insane mate.
Bro, no one forces you to use it. It is not even a 36 hour early access as with his other mods, chill down. He is basically doing quality work for FREE. His mods always slay. You can't wait one freaking day? Go watch some tiktok garbage it is made for impatient people like you, who have no patience to watch youtube videos. Grow up.
 

TJP623

Newbie
Feb 2, 2022
75
26
What does “Trust max. limit” mean? Does it mean that the character can earn one more trust than before?
 

vayora5984

New Member
May 26, 2023
4
11
LightmanP , you may want to add this into your mod_additions:

Python:
    def relationshipCheck(CName, Difficulty, Attribute):
        Output = "Error when processing skill check."
        Value = -1
        global cheat_mode
        #for Easy DifficultyModifier
        if DifficultyModifier:
            TempDifficulty = Difficulty - 0.2
        else:
            TempDifficulty = Difficulty
        fillInChoices()
        for i in Characters:
            if i.CName == CName:
                if Attribute == "Affinity":
                    if cheat_mode:
                        Output = i.Name + " affinity check passed!"
                        Value = True
                    elif i.Affinity >= i.MaxAffinity * TempDifficulty:
                        Output =  i.Name + " affinity check passed!"
                        Value = True
                    else:
                        Output = i.Name + " affinity check failed!"
                        Value = False
                if Attribute == "Trust":
                    if cheat_mode:
                        Output = i.Name + " trust check passed!"
                        Value = True
                    elif i.Trust >= i.MaxTrust * TempDifficulty:
                        Output =  i.Name + " trust check passed!"
                        Value = True
                    else:
                        Output = i.Name + " trust check failed!"
                        Value = False
        resetSkills()
        resetCharactersListStats()
        #resetRelationships()
        return Value, Output
If you're gonna cheat, better to do completely, right?
 
Last edited:
  • Like
Reactions: Aurelius Ambrosius

Johan_0000

Member
Apr 14, 2023
301
219
Hey man just a heads up new update dropped and this needs to be updated please LightmanP
Yes and I won't lie dude this line in the changelogs kinda scares me lol
-A ton of back end code has been reworked and recompiled. if you are using any mods it's possible you may have to disable them, or even start the game from the beginning, or wait for them to be patched.
 
  • Wow
Reactions: GoWFO
4.00 star(s) 1 Vote