tarin Posted September 1, 2020 Share Posted September 1, 2020 Nudity Laws View File Ok so what is this? Simple its a small mod that adds a section during faith creation where you can decide who in your religion is naked and who not. There are four options: -female nudity (all women are naked) -male nudity (all men are naked) -full nudity (everyone is naked) -no nudity (no one is naked) Compatability: this mod will not work with any mod that modifies the should_be_naked_trigger trigger. But why did you create this its hardly a big mod or anything just a small modification? Basically because I wanted to. Also I kind of wanted the title of first ck3 lewd mod not sure I was fast enough tough I don't think I will expand this any further. It does what it says, tough if there are special wishes I might add them. I will also try to fix any bugs or issues if they occur. If you want to talk about the mod or need help with your own mod you can reach me on the House Irae discord. So have fun with this. Submitter tarin Submitted 09/01/2020 Category Crusader Kings 2 Requires 10 Link to post
doan77 Posted September 1, 2020 Share Posted September 1, 2020 GG, first porn mod on CKIII, congratulation 1 Link to post
Reaper Frank Posted September 1, 2020 Share Posted September 1, 2020 how do i get this do work 1 Link to post
Voidstorm Posted September 1, 2020 Share Posted September 1, 2020 Your pathing is personalized, OP. You might want to change that. Link to post
SamIAmHam Posted September 1, 2020 Share Posted September 1, 2020 This feature already exists in the game. Link to post
tarin Posted September 1, 2020 Author Share Posted September 1, 2020 43 minutes ago, Voidstorm said: Your pathing is personalized, OP. You might want to change that. Ohh thanks Link to post
tarin Posted September 1, 2020 Author Share Posted September 1, 2020 Ok path is fixed should work now. I blame the launcher mod tool for putting in a personalized path to begin with and not just have the relative path 25 minutes ago, SamIAmHam said: This feature already exists in the game. Yes and no. The is the natural primitivism which makes everyone naked. This just creates a special section where you can choose who is naked and are not limited by the restrictions of natural primitivism Link to post
thenoirangel Posted September 1, 2020 Share Posted September 1, 2020 Nice mod, do you plan on doing more with this concept? For example, having a 'none' option on the clothing tab? Link to post
Voidstorm Posted September 2, 2020 Share Posted September 2, 2020 I quite like the mod. Gives me the option to skip the naturalism and pick something else instead. Just hoping for some more options and religion icons in the future. Link to post
SamIAmHam Posted September 2, 2020 Share Posted September 2, 2020 3 hours ago, tarin said: Ok path is fixed should work now. I blame the launcher mod tool for putting in a personalized path to begin with and not just have the relative path Yes and no. The is the natural primitivism which makes everyone naked. This just creates a special section where you can choose who is naked and are not limited by the restrictions of natural primitivism I stand corrected then. Link to post
adam110311 Posted September 2, 2020 Share Posted September 2, 2020 man be proud of yourself you're the first of many Link to post
amdhans Posted September 2, 2020 Share Posted September 2, 2020 You may want to add [CK3] or something to the title, this is still the CK2 section of the forum. 2 Link to post
juampi22 Posted September 2, 2020 Share Posted September 2, 2020 I can't get the mod to work, i created a mod folder in documents/paradox/ck3/mod and placed the files like the ck2 mods did i do wrong? Link to post
MasterQuinn Posted September 2, 2020 Share Posted September 2, 2020 56 minutes ago, juampi22 said: I can't get the mod to work, i created a mod folder in documents/paradox/ck3/mod and placed the files like the ck2 mods did i do wrong? You have to enable them in the Launcher after you get them into that directory. Link to post
boobbut Posted September 2, 2020 Share Posted September 2, 2020 game crashes when load with mod how to fix Link to post
Hawling Posted September 3, 2020 Share Posted September 3, 2020 Is it possible to have these as game rules? Link to post
sserobinsse Posted September 3, 2020 Share Posted September 3, 2020 great mod was just thinking one or two days ago how great it would be if a could have nudity option even as a non natural thing due to the faiths i created is not compatible with the natural primitivism option that exist ingame so thanks for making the mod Link to post
Hamakabula Posted September 4, 2020 Share Posted September 4, 2020 Doesnt work for me. I get the option to set the law but nobody undresses. Tried all variants, waited a few days (although in primitivism its instant). Version is 1.02 now i think What may be the issue? Link to post
sserobinsse Posted September 4, 2020 Share Posted September 4, 2020 5 hours ago, Hamakabula said: Doesnt work for me. I get the option to set the law but nobody undresses. Tried all variants, waited a few days (although in primitivism its instant). Version is 1.02 now i think What may be the issue? i have seen that some for some strange reason does not get the "undressed" part because i have seen females have "clothes" on them but you can see that they are suppose not to so i think it my be a ingame graphic "bug" will see if i can show you a pic of what i mean will edit is one if i can get one edit: add the pic with the thing i talk about the Erotica faith thing is my custom faith could not come up with a more fitting name for the faith Link to post
Hamakabula Posted September 4, 2020 Share Posted September 4, 2020 I think characters under a certain age are hardcoded to never be naked because while paradox could get away with showing tiddies, they would have a hard time getting PG rating with pedophilia I have the issue regardless of age though Link to post
ToastBaron Posted September 4, 2020 Share Posted September 4, 2020 A trick for the clipping/not-naked issue is to open the barbershop and change their outfit to default. That worked for a few characters I had the issue with, apparently non-default outfits don't get removed. Of course this only works with characters for whom you can access the barbershop, which I think is just immediate family at your court. Link to post
Siudhne Posted September 5, 2020 Share Posted September 5, 2020 Edit: Messed stuff up, doesn't work. Just a head's up, you should probably change your should_be_naked_trigger to this: <snip> Unintuitively, functions get automatically merged into functions of the same name, not replaced. If you copy&paste the whole code you actually end up with the original code twice. Which doesn't break anything in your case, but it's a good thing to be aware of. Also, that probably allows multiple mod to hook into the function (but they can only add things, never remove them) without breaking compatibility, so you could actually remove your compatiblity disclaimer, hooray! Link to post
tarin Posted September 5, 2020 Author Share Posted September 5, 2020 1 hour ago, Siudhne said: Just a head's up, you should probably change your should_be_naked_trigger to this: should_be_naked_trigger = { OR = { AND = { is_female = yes faith = { has_doctrine_parameter = naked_females_active } } AND = { is_male = yes faith = { has_doctrine_parameter = naked_males_active } } } } Unintuitively, functions get automatically merged into functions of the same name, not replaced. If you copy&paste the whole code you actually end up with the original code twice. Which doesn't break anything in your case, but it's a good thing to be aware of. Also, that probably allows multiple mod to hook into the function (but they can only add things, never remove them) without breaking compatibility, so you could actually remove your compatiblity disclaimer, hooray! Thats great to know thanks will do it once I have time. 22 hours ago, lordcheesecake said: A trick for the clipping/not-naked issue is to open the barbershop and change their outfit to default. That worked for a few characters I had the issue with, apparently non-default outfits don't get removed. Of course this only works with characters for whom you can access the barbershop, which I think is just immediate family at your court. yes if a character has none default clothes it won't work. Also only adult characters i.e. over 18 will be naked for obvious reasons. Link to post
Siudhne Posted September 5, 2020 Share Posted September 5, 2020 1 hour ago, tarin said: Thats great to know thanks will do it once I have time. Scrap that, I'm stupid, it doesn't actually work. Must have gotten a bit carried away there because it does 100% work like this for stuff like hunt_random_pulse, letting you add new hunting events without copy&pasting the other events. Now just to figure out why those are handled differently... Link to post
kanne28 Posted September 5, 2020 Share Posted September 5, 2020 The launcher says that this does not work with the game's current version (1.0.3). Can anyone confirm if they have any issues with it? Link to post