After attending the party, what do you have to do?

Vitalis597

New Member
Aug 19, 2022
4
1
26
Apologies for the necro, but I've been wondering this myself.

It's a year on. I've passed the Truthfinger test... I've spent more time in the Paragon Brothel (the only hint as to Jill's location) than anyone of my station really should... Still no clue where she, or the probe is.

Half tempted to search out every brothel in the Rush, given Carvers reputation for adding stuff into the contracts and Jill was stupid enough to sign one with her lmao
 

Theron

Well-Known Member
Nov 8, 2018
3,322
1,316
44
Fenoxo was writing the next dungeon a couple of months ago and Adjatha was working on busts for enemies that currently aren't in the game.

I expect there's a huge backlog bult during the conversion to JavaScript, so it may depend on what the coders want to work on.
 
  • Like
Reactions: Vitalis597

Vitalis597

New Member
Aug 19, 2022
4
1
26
Well, that royally sucks...

I love Fenoxo games, I really do... But I don't love the wait for new content. From Uveto's unfinished areas to the Sidewinder (still) not having descriptions, to Jill just... Vanishing like that... Really kinda kills the mood to play it once you've done, quite literally, everything that the game has to offer for the next two years. Think the only thing I haven't done yet (on this file) is visit the Korgi stronghold again. And that's only because the random event refuses to occur for me, no matter how much I run about in the snow.

Ah well. Guess we check back in a few months and hope my saves are still there.
 
  • Like
Reactions: Arai

Karretch

Well-Known Member
Aug 26, 2015
2,068
304
Well, that royally sucks...

I love Fenoxo games, I really do... But I don't love the wait for new content. From Uveto's unfinished areas to the Sidewinder (still) not having descriptions, to Jill just... Vanishing like that... Really kinda kills the mood to play it once you've done, quite literally, everything that the game has to offer for the next two years. Think the only thing I haven't done yet (on this file) is visit the Korgi stronghold again. And that's only because the random event refuses to occur for me, no matter how much I run about in the snow.

Ah well. Guess we check back in a few months and hope my saves are still there.
What random event for Korgii? If you mean Ula, she is in a cave and not about in the snowfields, and then doesn't move from there. If you can't find her, you might have fucked up the whole thing by initially ignoring her.
 

Vitalis597

New Member
Aug 19, 2022
4
1
26
What random event for Korgii? If you mean Ula, she is in a cave and not about in the snowfields, and then doesn't move from there. If you can't find her, you might have fucked up the whole thing by initially ignoring her.
Well, fingers crossed I've just missed one tile and I can find her after another lap around the snowfields. If I have missed her, are there any cheat options to spawn her back in, like Nastizia? Or is she just dead for good now?
 

Theron

Well-Known Member
Nov 8, 2018
3,322
1,316
44
Ula has a chance to appear in any cave you enter. Just keep pick a cave and keep entering and leaving until she appears.

Once you've encountered her, she'll disappear after 5 days if you don't help her.
You can check
flags['ULA_LEAVE_TIMER']
in the console. If it's undefined, you haven't met her yet.
When you meet her, it's set to the game timer. If you missed her, you can set the flag to your current time passed in minutes
flags['ULA_LEAVE_TIMER'] = Days * 1440 + Hours * 60 + Minutes
 
Last edited:

Vitalis597

New Member
Aug 19, 2022
4
1
26
Ula has a chance to appear in any cave you enter. Just keep pick a cave and keep entering and leaving until she appears.

Once you've encountered her, she'll disappear after 5 days if you don't help her.
You can check
flags['ULA_LEAVE_TIMER']
in the console. If it's undefined, you haven't met her yet.
When you meet her, it's set to the game timer. If you missed her, you can set the flag to your current time passed in minutes
flags['ULA_LEAVE_TIMER'] = Days * 1440 + Hours * 60 + Minutes
I have no clue how to even open the console, let alone play about with it... So imma just do a wiggle in and out of the first cave I find, cross my fingers and hope for the best.

If I can't find her... Guess I'll go ask google how to play around in the TiTS Console... Or probably search the forums for an answer because google thinks I want porn instead. lmao
 

TheShepard256

Well-Known Member
I have no clue how to even open the console, let alone play about with it... So imma just do a wiggle in and out of the first cave I find, cross my fingers and hope for the best.

If I can't find her... Guess I'll go ask google how to play around in the TiTS Console... Or probably search the forums for an answer because google thinks I want porn instead. lmao
F12 (in most browsers) or Ctrl+Shift+i (apparently also works on the downloadable version).
 

OrangeBurner

Well-Known Member
Mar 13, 2022
305
72
I have no clue how to even open the console, let alone play about with it... So imma just do a wiggle in and out of the first cave I find, cross my fingers and hope for the best.
If you are on the browser version you can just press F12 to bring up the javascript console.
If you are playing on the downloadable versions you have to press Ctrl+Shift+I to bring up the electron console (Ctrl+Shift+I also works on the browser version)

When you meet her, it's set to the game timer. If you missed her, you can set the flag to your current time passed in minutes
flags['ULA_LEAVE_TIMER'] = Days * 1440 + Hours * 60 + Minutes
Firstly, you need to set her leave timer at least 2 days ahead of the current game timestamp.
Because if you set it to the current game time the game thinks you've abandoned her.

Also, you need to set which cave Ula is in: Basically just change flags.ULA_CAVE to a location.

You can also just use the GetGameTimestamp() function.
So to get Ula to spawn with enough time: flags.ULA_LEAVE_TIMER = GetGameTimestamp() + (60*24*5)

And to spawn her in the cave just north of the town you would set: flags.ULA_CAVE = "UVIP D22"

Just copy and paste this into the console:
JavaScript:
flags.ULA_LEAVE_TIMER = GetGameTimestamp() + (60 * 24 * 5);
flags.ULA_CAVE = "UVIP D22"

// Will spawn Ula in the cave just north of the town.
 

Theron

Well-Known Member
Nov 8, 2018
3,322
1,316
44
Firstly, you need to set her leave timer at least 2 days ahead of the current game timestamp.
Because if you set it to the current game time the game thinks you've abandoned her.
Did it change in JavaScript? Because I'm reading it as it sets the value to the current timestamp.
public function caveMeetUla():void
if(flags["ULA_LEAVE_TIMER"] == undefined) flags["ULA_LEAVE_TIMER"] = GetGameTimestamp();

With this
if(flags["ULA_LEAVE_TIMER"] == undefined || flags["ULA_LEAVE_TIMER"] + 60*24*5 > GetGameTimestamp())
determining if she's still there.

Or you could just flag Ula as saved.
flags["ULA_SAVED"] =
1 if you want to have given her a coat, 2 if you want to have given her a Heat Belt. I'm not sure if it matters.