Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

It seems like Willpower is not recovered by resting in the new update? Is that intentional?

Edit: Also, I notice you did reword the the sequence of Anthony no longer being in his cell, but he is actually still there, so it didn't really fix it.

Thanks for noticing, I corrected the sleeping. An "x" was missing at willpowerstat.value which meant it was always refilling the stat at its numerator instead of its denominator.

Concerning Anthony, I checked the script but I can't really understand why it wouldn't work... Could you give me more details on the circumstances where it says he's not there while he is ? It is supposed to only say it when he's either possessed by the Guardian (and you didn't witness it) or taken for milking on Jupiter's phase. Here's the script if it can better help you find where the mistake is.

if anthonytrappedcell == True:
        if anthonypossessed==True:
            if "GuardianFuckedAnthony" not in MemoryLogs:
                if "AnthonyFound" not in MemoryLogs:
                    "This cell is empty."
                    pass
                else:
                    "Anthony is no longer in his cell... You wonder where they took him."
                    pass
            else:
                "Anthony has been possessed by the guardian, they most probably won't come back here."
        elif phase == 4:
            if "AnthonyFound" not in MemoryLogs:
                "This cell is empty."
                pass
            else:
                "Anthony is no longer in his cell... You wonder where they took him."
        else:
            if "AnthonyFound" not in MemoryLogs:
                $MemoryLogs.append("AnthonyFound")
                "Anthony, your classmate, is lying on his belly in this cell."
                pass
            else:
                "Anthony is still lying on his belly, he doesn't seem to recover on his own."
    if anthonytrappedcell == False :
        "You saved your classmate, you're scared to imagine what would have happened of him without your intervention."
(1 edit)

The error may not be in that block, and I don't know specifically what your variables are, but based on my understanding, anthonytrappedcell should not be True in those circumstances. The PC may think he is, but he's not. That said, I am way newer at Python than you are :P

I believe I fixed it ! Thank you for insisting on that point, I couldn't see my mistake. I had made a new value to determine who the Guardian owns with a list, but it was conflicting with part of the scripts still using the old value. I tested all situations, it seems quite solid so far !