Jump to content

[mod] [CK2] Luxuria Fantasia - Updated: 23AUG20


Recommended Posts

Posted

Had an interesting occurrence when my ruler died and I chose the option to become a ghost - suddenly, my ruler was Father and Mother to some of his children.  Father was the 'Dead" ruler and Mother was the "Ghost".  I didn't grab a screenshot though.  Will do so if it happens again.  

Posted

I want to report a bug in DWF that was found and discussed in the DW Extra support thread.

 

The bug makes characters regain the Virgin trait after previously losing it, when loading a savegame.

It is caused by the way DWF assignes and checks characters virginity.

 

From DWF_Core_on_actions.txt:

Spoiler

on_startup = { <--on_startup triggers on loading a new game aswell as reloading a save.
    events = {
        DWCore.1 # Sets the global value of Dark_World_Reborn_Present for mods that want to verify Dark World Reborn is present
        DWOptions.1000 # Sets the appropriate flags
        DWSeeding.1 # DWR Seeding event
        DWCore.30 #Virgin trait assignment

    }
}

 

From DWF_Core_core_events.txt:

Spoiler

# .30 Virgin trait assignment on start-up (hidden event)
character_event = {
    id = DWCore.30
    is_triggered_only = yes # triggered via on_action
    hide_window = yes # hidden from the player
    
    trigger = {
        NOT = { has_character_flag = dw_virginity_checked } # We've haven't looked at them before
        NOT = { trait = virgin } # They don't already somehow have the Virgin trait
    }
    
    immediate = {
        if = {
            limit = {
                NOT = { practical_age = 16 }
            }
            add_trait = virgin
            break = yes
        }

        if = { # Taking the general assumption that people have lost their virginity by the age of 30 for simple game start mechanics
            limit = {
                practical_age = 30
            }
            set_character_flag = dw_virginity_checked # Marking them to prevent another future check
            break = yes # removes us from the immediate block
        }
        if = { # Identifying our good looking, poor decision makers
            limit = {
                trait = fair
                practical_age = 18
                ai_rationality = -10
            }
            set_character_flag = dw_virginity_checked # Marking our fair folks to keep them from future virgin checks
            break = yes # removes us from the immediate block
        }
        if = { # Can't be pregnant or a mother unless you're the Virgin Mary and this is past her time in history.
            limit = {
                OR = {
                    is_pregnant = yes
                    num_of_children = 1
                }
            }
            set_character_flag = dw_virginity_checked # Marking our pregnant folks to keep them from future virgin checks
            break = yes # removes us from the immediate block
        }
        if = { # Those who are focused in the sexual arts are assumed to have tasted the wine.
            limit = {
                OR = {
                    trait = lustful
                    trait = hedonist
                    trait = seductress
                    trait = seducer
                }
            }
            set_character_flag = dw_virginity_checked # Marking these folks to avoid future virgin checks
            break = yes # removes us from the immediate block
        }
        if = { # Married folks, lovers, and consorts are assumed to all have had sex at least once.
            limit = {
                or = {
                    is_married = yes
                    is_consort = yes
                    is_lover = yes
                }
            }
            set_character_flag = dw_virginity_checked # Marking these folks to avoid future virgin checks
            break = yes # removes us from the immediate block
        }
        add_trait = virgin # If we made it this far then they pass the virgin check
    }
}

The first block in the immediate = {} that checks characters below the age of 16 lacks the set_character_flag = dw_virginity_checked flag. This enables a scenario in which a Character (called "A" in the example below) will regain the Virgin trait.

 

At gamestart A is below 16 and is assigned the trait but not the flag. At some point A loses her virginity.

If on the next save reload she is between 16-30 and not any of these: fair/lustful/hedonist/seductress/seducer/pregnant/has a child/married/consort/lover,

she will be reassigned the Virgin trait.

 

I have tested this in a new game with only DWF enabled.

The easiest solution in my opinion would be to edit "events/DWF_Core_core_events.txt" Line 39-46 like this(change boldened):

Spoiler

      if = {


            limit = {
                NOT = { practical_age = 16 }
            }
            add_trait = virgin
            set_character_flag = dw_virginity_checked # Marking them to prevent another future check
            break = yes
        }

 

Posted

I'm so happy you switched to individual modules instead of in-game decisions to exclude certain content! I've been playing around with vampires lately and they don't seem to be able to feed anymore. Is this intentional?

Posted
2 hours ago, R0nin78 said:

I'm so happy you switched to individual modules instead of in-game decisions to exclude certain content! I've been playing around with vampires lately and they don't seem to be able to feed anymore. Is this intentional?

It was removed when I also removed the yearly health loss. You *could* nom on them through the vampiric seduction, I guess.

Posted
3 hours ago, lockeslylcrit said:

It was removed when I also removed the yearly health loss. You *could* nom on them through the vampiric seduction, I guess.

I actually prefer not having to worry about feeding. It was a pain in the ass before and one would assume that with a few thralls at court, feeding would just happen without having to click a decision, so yeah... I'm cool with this. 

 

I've managed to get the vampire portraits from the Warhammer mod to work with DWF, but I'd rather have custom portraits for my vampire characters. Is there an easy way to do that without breaking the classic monsters module? I have a set of custom male and female portraits all ready to go, but I'm not sure how to implement them with the way you've done the different modules. Any help would be much appreciated.

Posted

Waiting for the answer to the previous question.. I found another one problem: two "futa"(being married) are engaged only in a mutual blowjob; thus, for the sake of gaining children, they will have to “go to the left”(or have a concubins)??

Posted
On 4/13/2019 at 8:59 PM, Yuhi said:

Waiting for the answer to the previous question.. I found another one problem: two "futa"(being married) are engaged only in a mutual blowjob; thus, for the sake of gaining children, they will have to “go to the left”(or have a concubins)?

I'm currently in the process of giving futas more options during sex.

Posted

I'm just wondering if the kidnap/abduction option have been removed, if it isn't then can you tell me where do find it, if it's removed then is there anyway I can add it back?

Posted
8 minutes ago, ShawnnieLove said:

I'm just wondering if the kidnap/abduction option have been removed, if it isn't then can you tell me where do find it, if it's removed then is there anyway I can add it back?

You will need the Intigue Focus (Way of Life)

Posted

Hey @lockeslylcrit, have you checked deviantart.com? They got a massive awesome content for your mod!!!!

Even for your "Court and Commerce" part of your mod!

And, is it possible for you to scale event pictures, in 472x620 to fit the window? Have you tried that?

If you want, I could provide you with that content, just tell me the theme and I'll find them because I'm a member..!

 

Thanks!

Posted
27 minutes ago, Drax70 said:

Hey @lockeslylcrit, have you checked deviantart.com?

DeviantArt is the shitty, un-curated, censored version of Hentai Foundry. No thanks.

 

28 minutes ago, Drax70 said:

And, is it possible for you to scale event pictures, in 472x620 to fit the window? Have you tried that?

Why the fuck would I want to do that? That would make the buttons overlay on top of the picture, and thus make the entire thing look like it was made by an amateur. No thanks.

Posted

"censored version of Hentai Foundry"???

Who told you that there is only hentai stuff in the site? There are 3D, photo manipulation, paintings, and anything that has to do with Fantasy and not, amongst known artists like calm>>> https://www.hentai-foundry.com/user/Calm/profile/page/all !!!

 

Apparently you are not a member in the site to activate the uncensored content of the site...!!! :)

 

Don't be such a narrow minded about the "buttons overlay on top of the picture...". Making that way, gives the impression of an RPG game like Skyrim etc. Besides, YOU COULD change the colour of the button to something darker if that is what bothers you!!!

 

Aaand.... " it was made by an amateur " Everybody knows the GREAT @lockeslylcrit!!!!! :D

 

Edit: My contribution to you : Lilith by @redz and Dark Elf Twins by @shadowstarart!!! (both from deviantart)

Quote

Lilith_by_redz_3d.thumb.jpg.1845473e72d0d5584428df53b399ed27.jpg

Quote
  • d45jklj-8cf75029-4cee-4b08-83bf-d9396b7d2843.png.98efeb67c6c049019301fcb02f4686a7.png

Thanks!!!

 

Posted
28 minutes ago, Drax70 said:

"censored version of Hentai Foundry"???

Who told you that there is only hentai stuff in the site? There are 3D, photo manipulation, paintings, and anything that has to do with Fantasy and not, amongst known artists like calm>>> https://www.hentai-foundry.com/user/Calm/profile/page/all !!!

 

Apparently you are not a member in the site to activate the uncensored content of the site...!!! :)

 

Don't be such a narrow minded about the "buttons overlay on top of the picture...". Making that way, gives the impression of an RPG game like Skyrim etc. Besides, YOU COULD change the colour of the button to something darker if that is what bothers you!!!

 

Aaand.... " it was made by an amateur " Everybody knows the GREAT @lockeslylcrit!!!!! :D

 

Thanks!!!

 

I have been using DA since the early 2000s. The difference between HF and DA is that HF is curated. DA is not. Just to get something like this or this you have to wade through piles of garbage like this or this. If I wanted something that wasn't porn, such as a background, I can use an aggregate site such as Pinterest. The vast majority of pictures I do use, however, ARE porn. If you read DA's submission policy, you'd know that the pictures I want to include are not allowed on DA.

 

Let's be honest here. The only reason we're here is to read erotic descriptions and see erotic art in CK2. Overlaying buttons over 1/3rd of the picture ruins half this aspect. It's basic video game design, no matter what game it is: you don't ruin the focus of the viewer by overlaying something that isn't the focus. Even in Skyrim, the text dialogue is at the bottom away from the focus, or appearing in the top left corner. In older RPGs, such as Baldur's Gate, Planescape: Torment, and Star Wars: KOTOR, dialogue text is separate from the focus.

 

Even if I were to make the buttons a darker color, this would affect the options for ALL events. Not just the narrative_event window. I'm not willing to ruin mod/vanilla compatibility just for this.

 

In short: This ain't my first rodeo.

 

 

 

Lastly, insulting another user is a reportable offense, as per LL's rules. If you wish to continue with this tirade, then I ask that you unsubscribe from all my threads and never post in them ever again. This will be your one and only warning. Please respect the rules and the mod author's wishes.

Posted
22 hours ago, lockeslylcrit said:

 

I have been using DA since the early 2000s. The difference between HF and DA is that HF is curated. DA is not. Just to get something like this or this you have to wade through piles of garbage like this or this. If I wanted something that wasn't porn, such as a background, I can use an aggregate site such as Pinterest. The vast majority of pictures I do use, however, ARE porn. If you read DA's submission policy, you'd know that the pictures I want to include are not allowed on DA.

 

Let's be honest here. The only reason we're here is to read erotic descriptions and see erotic art in CK2. Overlaying buttons over 1/3rd of the picture ruins half this aspect. It's basic video game design, no matter what game it is: you don't ruin the focus of the viewer by overlaying something that isn't the focus. Even in Skyrim, the text dialogue is at the bottom away from the focus, or appearing in the top left corner. In older RPGs, such as Baldur's Gate, Planescape: Torment, and Star Wars: KOTOR, dialogue text is separate from the focus.

 

Even if I were to make the buttons a darker color, this would affect the options for ALL events. Not just the narrative_event window. I'm not willing to ruin mod/vanilla compatibility just for this.

 

In short: This ain't my first rodeo.

 

 

 

Lastly, insulting another user is a reportable offense, as per LL's rules. If you wish to continue with this tirade, then I ask that you unsubscribe from all my threads and never post in them ever again. This will be your one and only warning. Please respect the rules and the mod author's wishes.

First of all, insulting you OR your work was not my intention and I appologize if you think I did. I just wanted to suggest or help you and the mod!

 

And FYI I have read the rules and I know why we are all here, otherwise I would be in a "plain" gaming forum..!

 

The only reason I offered my self to contribute was so you, or anybody else, wouldn't have to search the garbage for DWF content, the site has filters. I know how to search for content!

 

Anyway, keep up the great work!

Thanks!

Posted

Not too sure if this has been stated before but it seems when most events fire half of the event picture is missing not sure if this is a problem with the mods i am using, i'm using DW Extra, All DWF Modules, DZ Mod, Iron And Blood, Steves Amazing CB's, DW Tale Of Nine Tails, DW Beyond Heresy, DW Mercenary Commander, House Of Irae and Tale Of Nine Tails. Any tips on how to fix it? 

Posted
32 minutes ago, ImNotOneToJudge said:

Not too sure if this has been stated before but it seems when most events fire half of the event picture is missing not sure if this is a problem with the mods i am using, i'm using DW Extra, All DWF Modules, DZ Mod, Iron And Blood, Steves Amazing CB's, DW Tale Of Nine Tails, DW Beyond Heresy, DW Mercenary Commander, DZ Mod, House Of Irae and Tale Of Nine Tails. Any tips on how to fix it? 

Likely a conflict with another mod. Start turning off mods one by one until you find the culprit.

Posted

For some reason all my kids have the same werewolf portrait once they reach 16.  I'm a demon, most of them are as well.  One is a half-dragon...  

 

EDIT: Apparently it isn't only just my character's kids.  A lot of the courtiers and people in surrounding kingdoms have this portrait.  

Portrait error.PNG

Portrait error 2.PNG

Posted

Meow, version 2.1! I seem this(or not?).. traits: virgin, gladiator, etc.;DWF-bonus trait; buildings in cities and castles(brothels, all options for dragons and half-dragons), as well as garrisons of forts - again in 2 copies..??

Posted
1 hour ago, Yuhi said:

Meow, version 2.1! I seem this(or not?).. traits: virgin, gladiator, etc.;DWF-bonus trait; buildings in cities and castles(brothels, all options for dragons and half-dragons), as well as garrisons of forts - again in 2 copies..?

image.png

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...