Jump to content

Recommended Posts

Posted (edited)
On 5/2/2023 at 9:16 AM, McSplodey said:

I've got a issue. Almost every new courter i get, vanish immideatly - disapear without a trace.Its got to a point where i get 300+ massages per minute of someone inheriting something. Is there a known solution to this one? 

Checked if it is because of GOA mod. Yes it is. Seems to be a problem with total conversion mods.

Tentacled Dreams doesn't play well with mod overhauls that depart from CK2 in significant ways like GOT.  It does work with mods that stay close to CK2's history like HIP though. 

Edited by Celedhring
  • 2 weeks later...
Posted

Will there ever be a version of this for CK3, or any more updates to this version? I really enjoy this mod, it's probably my favorite CK2 mod, but playing as someone who's trying to fight against the tentacles is a bit limited at the moment, and I'd always be up for simply more content of any sort :D.

Posted
On 6/1/2023 at 1:45 PM, dulty said:

Will there ever be a version of this for CK3, or any more updates to this version? I really enjoy this mod, it's probably my favorite CK2 mod, but playing as someone who's trying to fight against the tentacles is a bit limited at the moment, and I'd always be up for simply more content of any sort :D.

 

I'm gonna level with you mate, Probably not, at least not by Cheri. That is not a diffinative 'NO' but Cheri is the one heading CK3's Carnalitas Unified mod, and unlike CK2, CK3 is still in active development, meaning a LOT of time has to be spent updating major mods every minor patch that Paradox releases, as somebody who used to make Stellaris mods, I can tell you it is a long and exhausting process.

 

As for this mod, somebody probably can claim it, ther have already been a pair of "extension" mods for this version, but nobody's really stuck around.

  • 3 weeks later...
Posted

Incase anyone else has this issue;

 

When I installed the Dark World Reborn dax70 mod the sound stops working, will work find with the other DWR version. I'm sure it's this mod because I took the time to try everything one by one and then everything except DWR-Drax70.

 

Drax is the larger of the two files because it has custom sounds. Who could have guessed the mod with custom sounds broke another's custom sounds XD

  • 1 month later...
Posted

I know this mod is probably way way out of development but can anyone help me out on how to create a world where tentacles are not initially present but player can bring them in specifically throguh the secret cult? I managed to get it to work randomly once and it was a super fun playthrough but I'm struggling to replicate that experience.

Posted (edited)
On 6/1/2023 at 8:45 PM, dulty said:

Will there ever be a version of this for CK3, or any more updates to this version?

 

Lithia just mentioned that Cheri gave permission to port the mod. But Lustful Void is still the focus so it'll take quite a while to do this.

 

21 hours ago, OhMeGaGameStudio said:

I know this mod is probably way way out of development but can anyone help me out on how to create a world where tentacles are not initially present but player can bring them in specifically throguh the secret cult?

 

How exactly do you mean that they are not present?

 

There's a number of game rules that you can use to prevent random tentacle monsters from showing up.

Edited by Zod
Posted (edited)
2 hours ago, Zod said:

How exactly do you mean that they are not present?

 

There's a number of game rules that you can use to prevent random tentacle monsters from showing up.


As in tentacle monsters don't exist in the world and there are no random encounters but you get the dream event and are the one running the secret cult to bring them to the world. I know it's possible cause I've done it, I even got a custom bloodline from it, I just have no clue how to replicate it and what the conditions are for triggering that dream event. There is no custom start with that so it's probably somewhere in the random rotation but I never managed to replicate it. The dream event also gives you the option to secretly convert to the tentacle religion iirc.

Edited by OhMeGaGameStudio
Posted
1 hour ago, OhMeGaGameStudio said:

I know it's possible cause I've done it, I even got a custom bloodline from it, I just have no clue how to replicate it and what the conditions are for triggering that dream event.

 

Afaik the dream event only triggers when your character has already been fully corrupted into a tentacle slave. And the only way to do that is to have fun with a tentacle monster.

 

The only other way I can think of doing this is by making the event fire anyways through the use of the console.

 

Oh and if you use the extended mod instead of random encounters you can use the gender bending option. You'll still have one tentacle monster in the world though.

Posted
3 hours ago, Zod said:

 

Afaik the dream event only triggers when your character has already been fully corrupted into a tentacle slave. And the only way to do that is to have fun with a tentacle monster.

Yeah I checked in the code and I see you're right. I guess I was misremembering. Thanks for the help!

  • 3 weeks later...
Posted
On 2/19/2023 at 6:51 PM, NSFWofcourse said:

 

I managed it. In warcraft mod, you MUST have their racial trait. Open scripted_effect, find create_tentacle section, and add some racial traits from warcraft. Problem solved.

 

God bless you, gentleman!

  • 1 month later...
Posted
On 5/14/2023 at 6:29 AM, Saber2th said:

Planning on starting CK3, is there any mod for CK3 that's similar to this one? I can see the author has moved on to CK3 as well, is there any plans on importing this mod to CK3?

 

 

 

 

  • 1 month later...
Posted

After the death of the main tentacle in the tentacle empire, and the empire falls apart - after a certain number of game days the game crashes.
Perhaps someone had the same problem and found a solution? Please tell me. 

  • 3 months later...
Posted

Bit of a bugfix, if anyone is still here -

Nomad split clan messes with.... quite a bit of the logic in this mod. I'd suggest adding a few is_nomad to a few of the effects in common/scripted_effects/tentacle_scripted_effects_characters.txt

 

tentacle_initialize_tentacle_character_effect = {
    if = {
        limit = {
            is_ruler = yes
            is_nomad = no #Added, nomads cannot change culture, tentacle monsters should be of tentacle culture. Incompatible.
            OR = {
                religion = tentacle_patriarchal
                independent = yes
            }
            OR = {
                trait = tentacle_monster
                csl_is_untouchable_npc_trigger = no
            }
       }
       tentacle_initialize_tentacle_monster = yes
    }

 

In tentacle_initialize_tentacle_slave_base

    if = { #
        limit = {  #
          is_nomad = no #Split clans spawn with parents, without this the new clan ruler can be marked for death.
        } #
        any_child_even_if_dead = {
            if = {
                limit = { father = { character = PREVPREV } }
                set_father = 0
            }
            if = {
                limit = { mother = { character = PREVPREV } }
                set_mother = 0
            }
            dynasty = none
            set_flag = csl_marked_for_instant_death
            death = { death_reason = death_missing }
        }
    } #

  • 4 weeks later...
Posted

Hi quick question, 
Wasnt there an option to keep the ruler and other slaves eternaly young until they "retire" into an Tentacle Lair ?

  • 3 weeks later...
Posted
On 8/7/2023 at 7:08 AM, Zod said:

 

Afaik the dream event only triggers when your character has already been fully corrupted into a tentacle slave. And the only way to do that is to have fun with a tentacle monster.

 

The only other way I can think of doing this is by making the event fire anyways through the use of the console.

 

Oh and if you use the extended mod instead of random encounters you can use the gender bending option. You'll still have one tentacle monster in the world though.

 

Hi, may I kindly ask what precisely was the Extended Mod referred to here?

  • 2 weeks later...
Posted
On 4/6/2024 at 1:40 AM, CPI073 said:

Hi, may I kindly ask what precisely was the Extended Mod referred to here?

This one:

 

 

  • 1 month later...
Posted
On 4/16/2024 at 2:00 AM, CPI073 said:

Can a female ruler marry another female ruler and/or tentacle slave?

Probably a bit late:

 

That depends entirely on your mod setup. With mine it is possible but I am not sure if this is included in Tentacles Dreams or from one of the other mods.

Posted (edited)

Don't know if the author still checks in here, but I just thought I'd drop by to say that I recently started playing this mod with Matilda of Tuscany (I'm basic I know). Good grief, this is a really fun and interesting mod. I made the mistake of finding some tentacle enclaves before I had an heir, and even though you become ridiculously fertile past a certain point, it can be really hard to become pregnant with a human child.

 

EDIT: Correction. It was a setting problem on my end. I now have an army of daughters because I don't have the heart to release them into the wild.

Edited by Saber83
  • 4 months later...
Posted
11 hours ago, CullenInky said:

Does anyone know how to change the religion of the character that I am playing through console commands? Would be helpful.

religion <Character ID> (OPTIONAL) <Religion> 

the wanted religion may differ from the localization shown in game

  • 1 month later...
  • 4 months later...
  • 4 weeks later...
  • 3 weeks later...

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...