eagersecret

Newbie
Feb 1, 2019
66
23
Hi, how do I get shaya X rowan scenes? I'm already week 53 and still no shaya scenes.
Also missing the scene to sweet talk Jezera after capturing 2 villages. I have captured 3 villages.
 
Last edited:

phupdup

Well-Known Member
Oct 24, 2019
1,391
1,087
I think I did manage to trigger most or all of this new Shaya arc in a previous playthrough before I got into testing my new Building framework. The obvious thing is getting Shaya introduced to the castle by building the Brothel. This will be presented somewhat out of order because I started with a grep of the events.rpy files for "shaya", and she's been around the scripts for quite a while. Also there's a collection of a dozen shayaCluexx flags and a counter that gets bumped when they are set. This is all probably for future scripting and seems to be in use in lieu of using the NPC relation attribute that will be adjusted up or down and then checked for Alexia, Draith, Cliohna and others.

Code:
game/events/ruler_events_6.rpy:    event('jezera_and_shaya_personal_time', triggers="week_end", conditions=('castle.buildings["brothel"].lvl >= 1', 'week >=4'), group='ruler_event', run_count=1, priority=pr_ruler)
This is actually an event with Jezera and Shaya that Alexia can eavesdrop on in the brothel. If Alexia opts to tell Rowan about the convo later, there's a setting of a flag shayaClue3 and a bump of a shayaClueScore variable.


Code:
game/events/ruler_events_22.rpy:    event('shayas_gift', triggers="week_end", conditions=('castle.buildings["brothel"].lvl >= 1', 'week >=4'), group='ruler_event', run_count=1, priority=pr_ruler)
Shaya goes to see Rowan in the throne room with Intel the brothel picked up on a caravan. The dialog differs depending on the level of Rowans corruption, but there's no sex or setting of variables. This event has been around for a while now.


Code:
game/events/ruler_events_38.rpy:    event('shaya_capital', triggers="week_end", conditions=("castle.buildings['brothel'].lvl >= 1",), group='ruler_event', run_count=1, priority=pr_ruler)
Shaya comes to Rowan with a business proposal but needs 100 from the treasury. There's extra dialog if Rowan had sex with Shaya before (shayaSex), but the whole scheme to pull out 100 and then put 10 back in each week for 20 weeks isn't implemented. There's also no code (yet?) to impact her relations if he goes along with the scheme or declines it.


Code:
./events/ruler_events_32.rpy:      event('rowans_reward', triggers="week_end", conditions=('0 < castle.buildings["brothel"].lvl > 0',), group='ruler_event', run_count=1, priority=pr_ruler)
A mysterious figure drops off some intel by Rowan's door in the middle of the night, and he brings it to Jezera. She rewards him with a private show by Shaya in the brothel (button menu option appears in brothel location).

That condition check is one of the weirdest things I've ever seen to see whether the brothel is built. Someone needs to put down the bong for a bit.

This private dance (sex) event has dialog which differs depending on whether the flag shayaSilkSeen is set, and that happens at the end of the event. So this private dance can be triggered more than once assuming our anonymous snitch decides to drop by again.

Code:
./events/ruler_events_39.rpy:  event('cup_of_tea', triggers="week_end", conditions=('privateDanceSeen',),group='ruler_event', run_count=1, priority=pr_ruler)
This event follows the private dance after a week or so and has Rowan dropping by the brothel to see Shaya. Jezera is having tea with her and the dialog will differ depending on whether shayaClue3 is set during Alexia's little peeping tom show event. Sets shayaClue7 and bumps the shayaClueScore counter. Menu choices asking her about herself set other flags and bump the score as well. Rowan only gets to pick 3 questions to ask.

At the end of the event, Shaya invites Rowan to be her arm candy at an orgy held back at her old brothel.


Code:
./events/ruler_events_39.rpy:  event('password_is_fidelio', triggers="week_end", depends=('cup_of_tea',),group='ruler_event', run_count=1, priority=pr_ruler)
The event for Shaya's orgy at her old brothel with Rowan as her escort. Rowan can ask a third party about the meaning of Shaya's veil and get another shayaClue flag set.



Hi, how do I get shaya X rowan scenes? I'm already week 53 and still no shaya scenes.
Also missing the scene to sweet talk Jezera after capturing 2 villages. I have captured 3 villages.
 
  • Like
Reactions: pabo

gimmedatgame

Newbie
Oct 1, 2018
36
58
Probably asking a question that has already been asked before but is Roisin in the game now? If so, how do you encounter her?
 

Bonobosaurus

Newbie
Jul 1, 2017
84
112
During the first castle battle, you have to claim Helayna for yourself. If you hint Alicia that you "care" about the girl, she will ask to have a bedroom on her own and while she mourns, Andras comes to her. If you let him help her, they will end up making out.

how to trigger these scenes?
 

05841035411

Member
Jan 10, 2018
445
621
Can you convince the coven to abandon black magic or is it impossible?
If I recall correctly, it's an extremely high skill check (21 or 22 or something like that, I think) to succeed, but it's technically possible - though you'll have to actually assign skill points here instead of just savescumming.
 
  • Like
Reactions: Sotman

Draco0

Member
Apr 20, 2020
236
106
Alright so, for all you cheaters out there. As of 0.2.61b I present to you the method to unlocking the gallery. In truth I'd also like to get the "Scene Replay" unlocked too but as of now I've no knowledge on where to begin with that (for the time being I'll take shots in the dark, but if anyone knows where to unlock the Scene Replay that'd be awesome). Happy Fapping

*Edit. Filepath is: [Start from where the .exe is]>renpy>common>00gallery.rpy (edit rpy with notepad or any other thing that works for you)
CheatsSoC2 is to unlock the gallery
CheatsSoC1 is to toggle playback options (forward, backward, auto, etc)

P.S. Thank you to the devs, I do hope you'll forgive me on this one ^^' after beating one of the versions a year back and coming to a new one I was a bit impatient on unlocking everything again. I also noticed the change-up in the code too. Nice!

P.S.S Edit: So I discovered a nice little thing called Un'Renpy (or something along those lines) that is a .exe you can run on your game files to see ALL scenes in-game. When installing I selected the "9" option for all features, but if you've the know how feel free to do your own thing. I consider this to be the current solution to the Scene Replay dilemma. Take care!
UnRen.bat link: https://f95zone.to/threads/unren-ba...compiler-console-developer-menu-enabler.3083/

I try it and it doesn't work currently
 

aykarin

Member
Aug 3, 2019
303
634
Probably asking a question that has already been asked before but is Roisin in the game now? If so, how do you encounter her?
Roisin has never been implemented. She has a finished sprite though, so probably we will see her in the game at some point. But I don't think it will be soon, because the devs currently seem to have other priorities, e.g. NPC character arcs, mechanics, goblin recruitment quest.
 

blockbusted

Member
May 25, 2017
318
941
During the first castle battle, you have to claim Helayna for yourself. If you hint Alicia that you "care" about the girl, she will ask to have a bedroom on her own and while she mourns, Andras comes to her. If you let him help her, they will end up making out.
Thank you!
 
Dec 24, 2020
450
1,034
Thouroughly enjoy the writing in this game. Also having two characters slowly becoming more depraved, but also still love each other is a real sweet spot for me. The NTR stuff is interesting because it's from both perspectives. Never with Andras though. Boo Andras.
 
4.00 star(s) 162 Votes