CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

Hatler

Newbie
Oct 6, 2019
35
262
With the new Null Hypothesis update I was kinda sad thinking about Rogue-Like being un-updated for so long. Kinda like that meme of unhappy Squidward looking out the window at Spongebob and Patrick having fun. But lo and behold Oni delivered. Woohoo, updates for everyone!
yay.jpg
 

salscou

Engaged Member
Apr 14, 2020
2,139
8,255
Man i dont know if its glitched or Oni didnt add anything, but betsy has literally no dialogue if you try to talk to her.
 

VenomusPL

Active Member
Jul 1, 2019
607
2,220
If you are using an old save and Xavier doesn't call you by the next morning: You need to start a fresh save and progress until Jubilee appears and by the next morning Xavier is going to call you to his office. Starting the whole Psylocke sequence
Fuck...it doesn't activate for me on my save.
Im not keen on starting the game anew...for like the 15th time...
 
  • Like
Reactions: Zepheral

sleepingkirby

Active Member
Aug 8, 2017
826
1,291
Fuck...it doesn't activate for me on my save.
Im not keen on starting the game anew...for like the 15th time...
The meeting condition is this:
Code:
        elif "met" not in BetsyX.History and "met" in JubesX.History:
            <snipped as this part is irrelevant>
                    elif bg_current == "bg player" and Time_Count == 1:
                            #You hadn't asked Emma yet
                            call BetsyMeet
                            jump Misplaced
To translate, you need to NOT have met Betsy (no duh), HAVE MET Jubilee, Be in your room (or having just left and not selected a location yet) and in the afternoon.
 

sleepingkirby

Active Member
Aug 8, 2017
826
1,291
This is why I usually don't download the unstable release.

Another girl barging in and starting a threesome is broken. To fix, in "script Functions.rpy", on line 8526, change

Code:
 call Threeway_Set(Other, GirlB=Girl)
to
Code:
call Threeway_Set(Other, Action=Girl.Offhand ,GirlB=Girl)
 

sleepingkirby

Active Member
Aug 8, 2017
826
1,291
Trigger_Swap() is also broken.
Change "script Function.rpy" line 6361 from this:
Code:
label Trigger_Swap(Active = 0, TriggerX1 = Trigger, TriggerX3 = Active.Offhand, Primary = Partner): #rkeljsvgb
to this:

Code:
label Trigger_Swap(Active = 0, TriggerX1 = Trigger, TriggerX3, Primary = Partner): #rkeljsvgb
So the good news is, both of these changes indicates that there is some refactoring in an attempt to make the code better. But, Oni, not being a programmer, forgot that (or didn't realize) that declaration is not the same as instantiation. So you can't declare Action=0 and expect Action to exist but also expect the program to know what Action is and what it's to be instantiated with when it's already jumped out of context. TriggerX3 also doesn't seem to do anything within that function so, chances are, it's a new parameter.
 
  • Like
Reactions: PornoKonto and C4yu
4.40 star(s) 154 Votes