italianstallionxxx
Member
- Aug 6, 2017
- 421
- 779
how many updates until the game is finished? i started it but id prefer to play the full version sometime in the future
2025 or 2027how many updates until the game is finished? i started it but id prefer to play the full version sometime in the future
Thank you! I don't care how many years it will take, I am just gonna be waiting for the inevitable fall of the Twins, it would really give me closure.Your wish is... Granted.
Will take some years to deliver though.
./events/alexia_corruption2.rpy: event('powerless', triggers='week_end', conditions=('all_actors["alexia"].flags["andras_influence"] > 5','all_actors["alexia"].relation < 50', 'alexiaJezObedient == False', 'all_actors["alexia"].flags["andras_influence"] >= all_actors["alexia"].flags["jezera_influence"]',), depends=('alexia_med_corruption',), run_count=1, priority=pr_story)
./events/alexia_corruption.rpy: event('in_her_hands', triggers='week_end', conditions=('all_actors["alexia"].flags["jezera_influence"] > 5','all_actors["alexia"].relation < 50', 'alexiaAndrasObedient == False', 'all_actors["alexia"].flags["jezera_influence"] > all_actors["alexia"].flags["andras_influence"]',), depends=('alexia_med_corruption',), run_count=1, priority=pr_story)
Well imo i dont think Alexia should be given such manipulative options although she is no fool but still she is just a villagers wife being put into extraordinary situations she lacks the perspective and cunning to feign submission to the twins in the same way Rowan a great hero and master strategist would be able to.Why are Alexia and Rowan being forced into stovepipe paths that seem to force them to choose either Jezera or Andras for their mode of corruption? Also why does Alexia have to be on the verge of dumping Rowan before the more hardcore events get triggered for sex? For example we have the follwing event triggers for Alexia corruption that test for relationship, obedience and whether one has more influence than the other before triggering. The "powerless" event is the gatekeeper for Alexia eventually having sex with Andras.
At the very beginning in the prologue, Rowan is forced to choose to have sex with either Jezera or Andras if he has sex at all. That choice sets mutually exclusive flags andrasIntroSex and jezeraIntroSex. Why can't there be an option for a threeway where Rowan gets his backdoor broken in by Andras while going down on Jezera up front?Code:./events/alexia_corruption2.rpy: event('powerless', triggers='week_end', conditions=('all_actors["alexia"].flags["andras_influence"] > 5','all_actors["alexia"].relation < 50', 'alexiaJezObedient == False', 'all_actors["alexia"].flags["andras_influence"] >= all_actors["alexia"].flags["jezera_influence"]',), depends=('alexia_med_corruption',), run_count=1, priority=pr_story) ./events/alexia_corruption.rpy: event('in_her_hands', triggers='week_end', conditions=('all_actors["alexia"].flags["jezera_influence"] > 5','all_actors["alexia"].relation < 50', 'alexiaAndrasObedient == False', 'all_actors["alexia"].flags["jezera_influence"] > all_actors["alexia"].flags["andras_influence"]',), depends=('alexia_med_corruption',), run_count=1, priority=pr_story)
Rowan has an option to go along with the twins for now while keeping the option of turning the tables on them later on the back burner. He has dialog with Alexia suggesting she go along with their advances as well in order to gain influence and intel. If the two are going to form a proper Peoples Front of Rosaria, they should be able to go after both of the twins together at the same time while learning the joys of a proper swinger lifestyle. Our favorite succubus stayed out of the last war for their own reasons and probably thinks that the twins would be setting up for another epic fail if it wasn't for her favorite couple experiment. Perhaps following her route would set up a proper chaotic neutral endgame much like a siding with Werden in Rastadel hints at a Lawful neutral ending.
You got NTR'd by RNG, it's part of the experience.Three years ago I asked about the rpg elements and if they arent a bit excessive. Today I replay the game and fail to send Alexia to the Wulump because rng decided Im not allowed to succeed the DC.
Feels great.![]()
Because swinging and NTR are incompatible with each other, and would be a nightmare to plan around.Why are Alexia and Rowan being forced into stovepipe paths that seem to force them to choose either Jezera or Andras for their mode of corruption? Also why does Alexia have to be on the verge of dumping Rowan before the more hardcore events get triggered for sex?
There's a list of console commands in the linked post in my sig.Ok, quick question. Anyone has working console command?
class FiendishDiplomacy(Research):
uid = 'fiendish_diplomacy'
name = 'Fiendish diplomacy'
category = 'diplomacy'
cost = 40
requires = 'Opulence, level 2 castle hall'
unlocks = 'Can recruit new soldier types.'
def on_complete(self):
castle.buildings['hall'].max_lvl = 2
castle.buildings['brothel'].max_lvl = 1
class SilksAndSmiles(Research):
uid = 'silks_and_smiles'
name = 'Silks and smiles'
category = 'diplomacy'
cost = 120
requires = 'Dark Subterfuge, brothel'
unlocks = 'Level 2 brothel, level 2 tavern.'
def req_met(self):
return castle.researches['fiendish_diplomacy'].completed and (castle.buildings['brothel'].lvl >= 1 or castle.buildings['tavern'].lvl >= 1)
def on_complete(self):
castle.buildings['brothel'].max_lvl = 2
castle.buildings['tavern'].max_lvl = 2
castle.buildings["brothel"].available_spies.append(Spy(renpy.random.choice(["m", "f"])).uid)
castle.researches['fiendish_diplomacy"].req_met()
True
castle.researches["fiendish_diplomacy"].completed
False
castle.researches["silks_and_smiles"].req_met()
False
class Building(object):
'''Base class for castle buildings'''
def __init__(self, uid):
self.uid = uid
self.name = all_buildings[uid]['name']
self.lvl = 0
# max level of this building, changing through game
self.max_lvl = 0
self.income = 0
self.maintenance = 0
self.morale = 0
self.research = 0
self._capacity = 0
self.recruitment = 0
self.description = all_buildings[uid]['name'] + ' description'
self.available = all_buildings[uid]['available']
.
.
.
def can_be_built(self):
'''Returns True if all conditions for upgrading to next level are met'''
# can be built if there is enough money and if this upgrade is not already scheduled and if current level is lesser than max level
#TODO
if self.name == "Summoning Chambers":
return False
return (castle.buildings[self.uid].up_cost <= castle.treasury) and (len(castle.scheduled_upgrades) == 0) and castle.buildings[self.uid].lvl < castle.buildings[self.uid].max_lvl and castle.buildings[self.uid].req_met()
def can_be_shown(self):
'''Returns True if building can be shown to player'''
return castle.buildings[self.uid].lvl <= castle.buildings[self.uid].max_lvl and castle.buildings[self.uid].req_met()
def req_met(self):
'''Returns True if building-specific conditions are met'''
if self.uid == "arena":
if self.lvl == 0:
return castle.researches['ordering_chaos'].completed
elif self.lvl == 1:
return castle.researches['military_logistics'].completed
elif self.uid == "pit" or self.uid == "kennel":
if self.lvl == 0:
return castle.researches['monster_taming'].completed
elif self.uid == "brothel":
if self.lvl == 0:
return castle.researches['fiendish_diplomacy'].completed
elif self.lvl == 1:
return castle.researches['silks_and_smiles'].completed
elif self.uid == "hall":
if self.lvl == 1:
return castle.researches['fiendish_diplomacy'].completed
elif self.lvl == 2:
return castle.researches['opulence'].completed
elif self.uid == "library":
if self.lvl == 1:
return castle.researches['contact_network'].completed
elif self.lvl == 2:
return castle.researches['research_infrastructure'].completed
elif self.uid == "barracks":
if self.lvl == 1:
return castle.researches['ordering_chaos'].completed
elif self.lvl == 2:
return castle.researches['military_logistics'].completed
return True
# temporary dict to store event's variables
# should only be used to save vars in event scope
default event_tmp = {}
label rowan_intro:
python:
# timestamp in weeks
week = 0
# adult mode (NSFW)
adult = True
# create avatar Rowan
avatar = Avatar('Rowan')
# set variable to show events that this scenario is Rowan's
Rowan_sc = True
# add some items to backpack
avatar.inventory.add_items(('iron_sword', 'leather_straps'))
# equip 'sword' to main hand
avatar.inventory.equip('iron_sword')
avatar.inventory.equip('leather_straps')
avatar.gold = 100
avatar.base_strength = 10
avatar.base_vitality = 10
avatar.base_reflexes = 5
avatar.base_intelligence = 5
avatar.base_luck = 5
avatar.heal()
# create castle
castle = Castle()
# hide temporary uid
python hide:
# create starting buildings
for uid in starting_buildings:
castle.buildings[uid].build()
# unlock first level of some buildings - they are available without research
for uid in castle.buildings.keys():
if uid in ["hall", "library", "barracks"]:
castle.buildings[uid].max_lvl = 3
elif uid in ["sanctum", "tavern", "forge", "brothel", "arena"]:
castle.buildings[uid].max_lvl = 2
Hey fam,SNIP
Unren works better.Ok, quick question. Anyone has working console command?