Mona.xn Posted July 3, 2017 Posted July 3, 2017 can you upload your mods file ? Because I could not install the mods.
Vampiressa Posted July 3, 2017 Posted July 3, 2017 How does the desire moodlet exactly work? Currently my Sims get it very rarely, they have to be flashed a few times in a row or talk for a long with a naked Sim of the prefered gender, it doesn't feel very natural It would be more realistic if they also got it when performing a certain ammount of romantic interactions (excluding woohoo) and/or if the Sim hasn't have sex in some time. Oh and we could have asexual Sims that don't gain desire at all and demisexual Sims who only gain desire if they have a strong conexion with the other Sim (soulmates/bf/gf/husband/wife). (I know you already have the demisexual trait in your list of ideas but it doesn't mention anything about desire and I thought it would be a great adition if it's possible to make something like that).
xtraeme Posted July 4, 2017 Posted July 4, 2017 First off I want to give massive kudos to TurboDriver. This is an amazing mod. I have some experience with Python and got it into my head it would be funny to add a feature to have my sims run around and do voyeuristic things to achieve goals to gain admittance to a club. Basically I want to try to programming in something like a fraternity or a sorority. The basics of the idea can be broken down like this: To join a club a Sim has to achieve various goals which eventually unlocks a trait that specifically flags them as being a "streaker". The conditions for this require a certain level of exhibitionism and doing activities in specific locations I have already decompiled the base Sims 4 python files using unpyc and made a couple of modifications to unpyc along the way to get it to better process some of the harder files. After a little tinkering I had it also iterate over the Wicked Whims ts4script sub-directories turbolib and wickedwoohoo. I am able to figure out what's going on for the most part, but the issue I am having is actually with the compilation. Basically I have a simple batch script named pyth_opt_comp.cmd that just executes: @echo off if %1x==x goto usage %~d1 cd "%~p1" echo on C:\python33\python.exe -O -c "import py_compile;py_compile.compile('%~n1%~x1','%~n1.pyo')" @echo off goto end :usage echo drag+drop the .py file onto this to compile to a .pyo file. :end Then I run: REM Unix find tool from http://unxutils.sourceforge.net/ find -name "*.py" -exec pyth_opt_comp.cmd {} ; This generates all the .pyo files. After that I realized there seems to be some dependency on mc_woohoo. So I grabbed those files, decompiled with unpyc, and dropped them in after generating the pyos The resultant ts4script zip file directory structure basically was: mc_woohoo pyos | |--turbolib\* |--wickedwoohoo\* The pyos I am generating are slightly smaller than the ones you have. The game loads and there are no new errors in lastException.txt, but the mod doesn't seem to load with the modifications. Replacing mc_woohoo.ts4script with the original makes everything work again. More often than not the game just crashes. LastCrash.txt isn't very useful, however. First I figured that might be a problem with dependencies so I loaded all the assets into Wing IDE figuring I could generate the pyos that way. However, there are missing symbols which I assume are loaded on TS4 launch. Anyhow I am just wondering if there is any shared resources so I can extend your very awesome mod here. A github link or something similar would be awesome. I am happy to provide you with any changes I make for you to use however you wish. It would be a ton of fun to tinker around with this because no other mod comes even close to what you have accomplished. Anyhow, any advice on what to do next would be appreciated. Rock on TurboDriver!
uriel1987 Posted July 4, 2017 Posted July 4, 2017 So i already posted about this issue and i solved thanks to ppl on this forum, but with the new wickedwhims or patches i got the problem again and i can't fix it anymore. My sims when entering shower or do the whickedwhims command "completely undress yourself" they put on random clothes instead of the nudesuit. Last time i fixed it by batch patching all my outfits to remove cc from shower, but now sims4studio tells that no cc needs fixes. I also tried this mod http://modthesims.info/d/568792 and it doesn't work. EDIT: I somehow managed to fix it by reinstalling a lot of mods and removing a lot of saved stuff in documents/sims4 folder but now i have another issue... When nude female sims have wierd nipples, with the same color of the skin. Every times this game updates it's a cc apocalypse, i can't take it anymore
Vahrezee Posted July 4, 2017 Posted July 4, 2017 A rape feature would be great.. Keep up the good work turbo!
TURBODRIVER Posted July 4, 2017 Author Posted July 4, 2017 Have an issue? This is not the place to post about it! Read how to get help in the topic main post! Check the 'WickedWhims Help Center' topic to learn more! Does WickedWhims support IK's?What's that? I meant IK bones (Inverse Kinematic). Some animations in the game use them (those with "a2a_" prefix for example).I've made a small addition to s4studio's addon for blender that allows me to use IK bones for animations in game and it works, but for some reason only for a single actor animations. This kind of interaction between different actors doesn't seems to work with WickedWhims. WickedWhims doesn't really have anything to do with that, I just use the game engine to play animations. I don't know what do you mean by different actors, I hope you read how to make animations for Sims 4, you don't place multiple actors in one clip. How does the desire moodlet exactly work? Currently my Sims get it very rarely, they have to be flashed a few times in a row or talk for a long with a naked Sim of the prefered gender, it doesn't feel very natural It would be more realistic if they also got it when performing a certain ammount of romantic interactions (excluding woohoo) and/or if the Sim hasn't have sex in some time. Oh and we could have asexual Sims that don't gain desire at all and demisexual Sims who only gain desire if they have a strong conexion with the other Sim (soulmates/bf/gf/husband/wife). (I know you already have the demisexual trait in your list of ideas but it doesn't mention anything about desire and I thought it would be a great adition if it's possible to make something like that). The desire level primarily grows from romantic conversations, nudity is just another way of growing it, sort of an easy mode. Sex-specific traits will appear pretty soon to work with sex autonomy, so they could affect desire too. First off I want to give massive kudos to TurboDriver. This is an amazing mod. I have some experience with Python and got it into my head it would be funny to add a feature to have my sims run around and do voyeuristic things to achieve goals to gain admittance to a club. Basically I want to try to programming in something like a fraternity or a sorority. The basics of the idea can be broken down like this: To join a club a Sim has to achieve various goals which eventually unlocks a trait that specifically flags them as being a "streaker". The conditions for this require a certain level of exhibitionism and doing activities in specific locations I have already decompiled the base Sims 4 python files using unpyc and made a couple of modifications to unpyc along the way to get it to better process some of the harder files. After a little tinkering I had it also iterate over the Wicked Whims ts4script sub-directories turbolib and wickedwoohoo. I am able to figure out what's going on for the most part, but the issue I am having is actually with the compilation. Basically I have a simple batch script named pyth_opt_comp.cmd that just executes: @echo off if %1x==x goto usage %~d1 cd "%~p1" echo on C:\python33\python.exe -O -c "import py_compile;py_compile.compile('%~n1%~x1','%~n1.pyo')" @echo off goto end :usage echo drag+drop the .py file onto this to compile to a .pyo file. :end Then I run: REM Unix find tool from http://unxutils.sourceforge.net/ find -name "*.py" -exec pyth_opt_comp.cmd {} ; This generates all the .pyo files. After that I realized there seems to be some dependency on mc_woohoo. So I grabbed those files, decompiled with unpyc, and dropped them in after generating the pyos The resultant ts4script zip file directory structure basically was: mc_woohoo pyos | |--turbolib\* |--wickedwoohoo\* The pyos I am generating are slightly smaller than the ones you have. The game loads and there are no new errors in lastException.txt, but the mod doesn't seem to load with the modifications. Replacing mc_woohoo.ts4script with the original makes everything work again. More often than not the game just crashes. LastCrash.txt isn't very useful, however. First I figured that might be a problem with dependencies so I loaded all the assets into Wing IDE figuring I could generate the pyos that way. However, there are missing symbols which I assume are loaded on TS4 launch. Anyhow I am just wondering if there is any shared resources so I can extend your very awesome mod here. A github link or something similar would be awesome. I am happy to provide you with any changes I make for you to use however you wish. It would be a ton of fun to tinker around with this because no other mod comes even close to what you have accomplished. Anyhow, any advice on what to do next would be appreciated. Rock on TurboDriver! Hey! Thanks! You haven't mentioned this, so you might not know that there is no way to decompile pyos 1 to 1. You will end up with a bunch of random loops and restructured logic. Without going through the whole thing and fixing it manually you will not be able to modify anything. There is no open source of the mod and there won't be, it's not a public project, but it's different for TurboLib. I am slowly developing something that could be used by other developers as a tool to learn Sims 4 script modding. It's nowhere close to being ready, but it contains a bunch of functions related to basic things in the game. The current LL release has a really underdeveloped version of it, so you won't find there much. You might learn some stuff from looking at what I've made, but the meat of it will be in TurboLib. Anything that doesn't use TurboLib at the time is a mess. In the next 2-3 LL release the whole mod will work on it and from that point, I will be able to complete it and upload somewhere.
kiraler Posted July 4, 2017 Posted July 4, 2017 First off I want to give massive kudos to TurboDriver. This is an amazing mod. I have some experience with Python and got it into my head it would be funny to add a feature to have my sims run around and do voyeuristic things to achieve goals to gain admittance to a club. Basically I want to try to programming in something like a fraternity or a sorority. The basics of the idea can be broken down like this: To join a club a Sim has to achieve various goals which eventually unlocks a trait that specifically flags them as being a "streaker". The conditions for this require a certain level of exhibitionism and doing activities in specific locations I have already decompiled the base Sims 4 python files using unpyc and made a couple of modifications to unpyc along the way to get it to better process some of the harder files. After a little tinkering I had it also iterate over the Wicked Whims ts4script sub-directories turbolib and wickedwoohoo. I am able to figure out what's going on for the most part, but the issue I am having is actually with the compilation. Basically I have a simple batch script named pyth_opt_comp.cmd that just executes: @echo off if %1x==x goto usage %~d1 cd "%~p1" echo on C:\python33\python.exe -O -c "import py_compile;py_compile.compile('%~n1%~x1','%~n1.pyo')" @echo off goto end :usage echo drag+drop the .py file onto this to compile to a .pyo file. :end Then I run: REM Unix find tool from http://unxutils.sourceforge.net/ find -name "*.py" -exec pyth_opt_comp.cmd {} ; This generates all the .pyo files. After that I realized there seems to be some dependency on mc_woohoo. So I grabbed those files, decompiled with unpyc, and dropped them in after generating the pyos The resultant ts4script zip file directory structure basically was: mc_woohoo pyos | |--turbolib\* |--wickedwoohoo\* The pyos I am generating are slightly smaller than the ones you have. The game loads and there are no new errors in lastException.txt, but the mod doesn't seem to load with the modifications. Replacing mc_woohoo.ts4script with the original makes everything work again. More often than not the game just crashes. LastCrash.txt isn't very useful, however. First I figured that might be a problem with dependencies so I loaded all the assets into Wing IDE figuring I could generate the pyos that way. However, there are missing symbols which I assume are loaded on TS4 launch. Anyhow I am just wondering if there is any shared resources so I can extend your very awesome mod here. A github link or something similar would be awesome. I am happy to provide you with any changes I make for you to use however you wish. It would be a ton of fun to tinker around with this because no other mod comes even close to what you have accomplished. Anyhow, any advice on what to do next would be appreciated. Rock on TurboDriver! Maybe check files without compilation? EDIT Also try using uncompyle6 to decompile pyos
dagger00 Posted July 4, 2017 Posted July 4, 2017 Does WickedWhims support IK's?What's that? I meant IK bones (Inverse Kinematic). Some animations in the game use them (those with "a2a_" prefix for example). I've made a small addition to s4studio's addon for blender that allows me to use IK bones for animations in game and it works, but for some reason only for a single actor animations. This kind of interaction between different actors doesn't seems to work with WickedWhims. WickedWhims doesn't really have anything to do with that, I just use the game engine to play animations. I don't know what do you mean by different actors, I hope you read how to make animations for Sims 4, you don't place multiple actors in one clip. Ok, for example, let's take an original animation from the game, let it be "a2a_friendly_T_hug" animation, export it from the game and put into a pack as for WickedWhims. Let's see how it looks: The girl tries to hug herself instead of her friend. Notice the hands position. This is because the engine can't find the second actor in this animation. Same thing happens with Adrews Poseplayer for a2a_ animations btw.
745MilkLotion Posted July 4, 2017 Posted July 4, 2017 I couldn't get Andrew pose player unless I removed the other mods its rather harsh, I did however got it working. Just so strange about the whole deal. I had re-edit previous statement please don't think badly of me. Corrupt Sims 4 file system kind made question would sim file from tray do that? or house I deleted all houses that were old and not workable just I might need to remove some clothes I still see that unworkable clothes on there causing conflict detector activate. Maybe normalcy will be only thing that happens.Today Origin browser won't even pop up. Hey I removed all online abilities I really don't go online I am not uploader, or someone who has camera into my stuff. It would be so wrong. Researching possible ill effects characters, if that was real life what is draw backs. Eh that be cool if you make version negative side effects, that fluctuate, Currently its like Utopia if you put no jealousy in mix, and no conflict of relationship status. What happens when you enable it. What am I missing to create the job or normal proceedings on the lot I wonder. thanks for mod
azmodan22 Posted July 4, 2017 Posted July 4, 2017 Does WickedWhims support IK's?What's that? I meant IK bones (Inverse Kinematic). Some animations in the game use them (those with "a2a_" prefix for example). I've made a small addition to s4studio's addon for blender that allows me to use IK bones for animations in game and it works, but for some reason only for a single actor animations. This kind of interaction between different actors doesn't seems to work with WickedWhims. WickedWhims doesn't really have anything to do with that, I just use the game engine to play animations. I don't know what do you mean by different actors, I hope you read how to make animations for Sims 4, you don't place multiple actors in one clip. Ok, for example, let's take an original animation from the game, let it be "a2a_friendly_T_hug" animation, export it from the game and put into a pack as for WickedWhims. Let's see how it looks: TS4 2017-07-04 18-49-00-78_1.jpg The girl tries to hug herself instead of her friend. Notice the hands position. This is because the engine can't find the second actor in this animation. Same thing happens with Adrews Poseplayer for a2a_ animations btw. I think you are mistaken. This has nothing to do with IK. What you are describing is how EA designes animations using the slot bones. Slot bones are there to 'tell' the engine how fat or slim a sim is, so when they play animations like that (like hagging) the hands dont clip thought the bodies. I dont think you can use those bones with blender though.
fikkasikka Posted July 4, 2017 Posted July 4, 2017 I will be reworking the pregnancy system in the future, so maybe then I will enable it, currently, it's really basic and too unpredictable with even 1% chance. I am not going to finish with climax by default because a user might not have climax animations and Sims will never finish. NPC Sims always try to finish with climax if it's available. Thanks, that makes sense. I do suggest if I may that if you could include a default climax animation for WW which is not a user can disable it would solve that issue as well. Just a suggestion which would perhaps lead to more autonomy. On another note I am very keen to try developing some animations (as a first timer). I also see a lot of people saying Sims3 has tons more and I thought maybe I can start my learning by porting those to Sims4. Is anyone aware of the complete process ? I have read that the animations need to be re-targetted (link #3) once imported in blender but other than that is very much doable. If someone can point me to the right thread/resources it would be great. The ones I found so far are listed for everyone. http://simscommunity.info/2015/09/06/sims-3-to-sims-4-object-conversion-tutorial/ http://modthesims.info/t/556369 http://sims4studio.com/thread/4985/converted-sims-3-animations-4
xtraeme Posted July 4, 2017 Posted July 4, 2017 Hey! Thanks! You haven't mentioned this, so you might not know that there is no way to decompile pyos 1 to 1. You will end up with a bunch of random loops and restructured logic. Without going through the whole thing and fixing it manually you will not be able to modify anything. Good call, I have tinkered with Hex-Rays in the past to make a memory mod trainer and you are absolutely right to say that no one should expect a miraculous full reveal of the original source. =) Uncompyle6 isn't always reliable and I have only managed to get it to reverse a couple of files before diving in to see if I can root out the origin of the errors. Since I want to work on the exhibitionism feature I did a diff with the unpyc3 output (left side is uncompyle6, right is unpyc3: https://www.diffchecker.com/TPwuK3mn) to see if I could find any differences between conditionals and loops. There were some inconsistencies I discovered that allowed me to fix a couple errors that were likely causing the crash near initial load. To keep things simple at the moment I am just modifying .\exhibitionism\tunable_handler.py so everything else should be completely untouched. In fact I keep your .pyos in place and just swap out the tunable_handler.pyo leaving all of the original python exactly as is and merge in a simple modification like: import sims4.commands @sims4.commands.Command('sayhi', command_type=sims4.commands.CommandType.Live) def sayhi(_connection=None): output = sims4.commands.CheatOutput(_connection) output('Hello Sims4') TS4 recognizes and loads TURBODRIVER_WickedWhims_Scripts.ts4script with the recompiled tunable_handler.py (see attached file just needs to be renamed to overwrite the default TURBODRIVER_WickedWhims_Scripts.ts4script). However something low level is probably messing up because uncompiling with uncompyle6 and/or unpyc3 - it doesn't matter which I use - and immediately recompiling with python 3.3 with no modifications to the exhibitionism tunable_handler script (or even with the fixes for the erroneous while loops), changes something somewhere such that none of the Wicked Whim interactions are available once in game. Any ideas? There is no open source of the mod and there won't be, it's not a public project, but it's different for TurboLib. I am slowly developing something that could be used by other developers as a tool to learn Sims 4 script modding. It's nowhere close to being ready, but it contains a bunch of functions related to basic things in the game. The current LL release has a really underdeveloped version of it, so you won't find there much. TurboLib will be a boon to the mod community. I have released a number of projects on github and sourceforge with GPL. Normally when I publish open source I do so with full copyright retained and then a requirement to maintain the notice, but with the ability to allow others to modify the source. So far I haven't experienced anything that has made me regret that decision to be permissive with the source. It has only brought in more eyes to help hunt down bugs and flesh out features. Reinventing the wheel is never fun, anything you can share will help. =) Anyhow, I just want to say again you deserve massive praise for what you have made. Best regards and thanks for making WW! X TURBODRIVER_WickedWhims_Scripts.twiddling - sharing.ts4script.zip
dagger00 Posted July 4, 2017 Posted July 4, 2017 I think you are mistaken. This has nothing to do with IK. What you are describing is how EA designes animations using the slot bones. Slot bones are there to 'tell' the engine how fat or slim a sim is, so when they play animations like that (like hagging) the hands dont clip thought the bodies. I dont think you can use those bones with blender though. The engine uses hands bones as IK bones. Those slot bones you talking about are often used as targets for IK bones, but you can use any bone as IK target, not only those with _slot suffix. The engine uses IK targets to calculate positions of the IK bones. It sums position of IK target with offset from special channels in s3clip. You can calculate those offset channels in blender.
OgahTerkenal Posted July 5, 2017 Posted July 5, 2017 I think you are mistaken. This has nothing to do with IK. What you are describing is how EA designes animations using the slot bones. Slot bones are there to 'tell' the engine how fat or slim a sim is, so when they play animations like that (like hagging) the hands dont clip thought the bodies. I dont think you can use those bones with blender though. The engine uses hands bones as IK bones. Those slot bones you talking about are often used as targets for IK bones, but you can use any bone as IK target, not only those with _slot suffix. The engine uses IK targets to calculate positions of the IK bones. It sums position of IK target with offset from special channels in s3clip. You can calculate those offset channels in blender. Yes, they have and use IK. And yes Dagger, I have seen your experiment of erotic dancing solo animation which is excellent. But don't you think it has something related to the different software that we (WW Animator) and EA uses? AFAIK, EA uses Maya while we uses Blender. Moreover, I guess this topic about breast bone deserve more attention.
dagger00 Posted July 5, 2017 Posted July 5, 2017 The clip would be the same anyway, so no, I don't think so. Alright, maybe this is unimportant, I just wanted it to work with WW.
OgahTerkenal Posted July 5, 2017 Posted July 5, 2017 The clip would be the same anyway, so no, I don't think so. Alright, maybe this is unimportant, I just wanted it to work with WW. No, I'm not saying that this is unimportant, as with this breakthrough, our animation can be used with any type of sims body and solve clipping issues. I myself wants WickedWhims to be as advance as OSEX, but I guess the knowledge behind IK is still very limited, as the matter of fact you're the only animator that I know using engine-integrated IK *bow to you* , while other still uses IK only at Blender and then bake it afterwards. Just for example : I don't even know how the IK event work and I'm pretty sure that TURBODRIVER didn't know about it, since the first response that I see is "What's that?" But that can be improved by sharing your knowledge and letting the developer know about what needs to be worked with. After all, we're in the same ships together right?
Awan1977 Posted July 5, 2017 Posted July 5, 2017 with this new update, I cannot invite other sims to join in, while I am having sex with one sim. Yes you can, just select the sims you're having sex with, the option to call someone to join will appear on them now. Thanks, it worked.
TURBODRIVER Posted July 5, 2017 Author Posted July 5, 2017 Have an issue? This is not the place to post about it! Read how to get help in the topic main post! Check the 'WickedWhims Help Center' topic to learn more! LoversLab release was updated to support Female Noir and Dark Sims Penis Models. Few improvements and fixes were done on Patreon: Added support for Female Noir and Dark Sims Penis Models Added 'Next' button in the Wicked menu to quickly progress to the next sex animation Made the mod installation notification message different and changed the color from orange to green Made acceptance of Sim nudity require a little bit of romance relationship before friendship relationship will be considered Made Sims in relationships only pair with their partners for Sex Autonomy on Low and Normal Level Settings (Polyamorous trait excludes this rule) Made non-CAS towel outfit count as revealing outfit Fixed mod data not loading when starting the game on editing a lot Fixed few minor issues with outfits Fixed 'Unique Sex Partners' statistic desync Fixed cum layers moodlets not updating properly Fixed vaginal cum layer being applied on Sims with a penis Does WickedWhims support IK's?What's that? I meant IK bones (Inverse Kinematic). Some animations in the game use them (those with "a2a_" prefix for example).I've made a small addition to s4studio's addon for blender that allows me to use IK bones for animations in game and it works, but for some reason only for a single actor animations. This kind of interaction between different actors doesn't seems to work with WickedWhims. WickedWhims doesn't really have anything to do with that, I just use the game engine to play animations. I don't know what do you mean by different actors, I hope you read how to make animations for Sims 4, you don't place multiple actors in one clip. Ok, for example, let's take an original animation from the game, let it be "a2a_friendly_T_hug" animation, export it from the game and put into a pack as for WickedWhims. Let's see how it looks: TS4 2017-07-04 18-49-00-78_1.jpg The girl tries to hug herself instead of her friend. Notice the hands position. This is because the engine can't find the second actor in this animation. Same thing happens with Adrews Poseplayer for a2a_ animations btw. That explains a lot. WickedWhims doesn't play animations as social interactions at the time, that is the last step for the animations support on the list and the hardest one to get working. Currently, Sims play animations individually. Once the sex interaction will be a social interaction, support for multiple actors will be in place and your edits will work as well as proper sync between actors and fixed timing for animations. I will be reworking the pregnancy system in the future, so maybe then I will enable it, currently, it's really basic and too unpredictable with even 1% chance. I am not going to finish with climax by default because a user might not have climax animations and Sims will never finish. NPC Sims always try to finish with climax if it's available. Thanks, that makes sense. I do suggest if I may that if you could include a default climax animation for WW which is not a user can disable it would solve that issue as well. Just a suggestion which would perhaps lead to more autonomy. On another note I am very keen to try developing some animations (as a first timer). I also see a lot of people saying Sims3 has tons more and I thought maybe I can start my learning by porting those to Sims4. Is anyone aware of the complete process ? I have read that the animations need to be re-targetted (link #3) once imported in blender but other than that is very much doable. If someone can point me to the right thread/resources it would be great. The ones I found so far are listed for everyone. http://simscommunity.info/2015/09/06/sims-3-to-sims-4-object-conversion-tutorial/ http://modthesims.info/t/556369 http://sims4studio.com/thread/4985/converted-sims-3-animations-4 A single default climax animation would do anything, there would have to be one for every single possible sex location and that is not possible. I never looked into the conversion of animations from TS3 to TS4 and this is the first time I am seeing it working (link #3). I have basic tutorials on creating animations for WW on my blog linked in the topic. Hey! Thanks! You haven't mentioned this, so you might not know that there is no way to decompile pyos 1 to 1. You will end up with a bunch of random loops and restructured logic. Without going through the whole thing and fixing it manually you will not be able to modify anything. Good call, I have tinkered with Hex-Rays in the past to make a memory mod trainer and you are absolutely right to say that no one should expect a miraculous full reveal of the original source. =) Uncompyle6 isn't always reliable and I have only managed to get it to reverse a couple of files before diving in to see if I can root out the origin of the errors. Since I want to work on the exhibitionism feature I did a diff with the unpyc3 output (left side is uncompyle6, right is unpyc3: https://www.diffchecker.com/TPwuK3mn) to see if I could find any differences between conditionals and loops. There were some inconsistencies I discovered that allowed me to fix a couple errors that were likely causing the crash near initial load. To keep things simple at the moment I am just modifying .\exhibitionism\tunable_handler.py so everything else should be completely untouched. In fact I keep your .pyos in place and just swap out the tunable_handler.pyo leaving all of the original python exactly as is and merge in a simple modification like: import sims4.commands @sims4.commands.Command('sayhi', command_type=sims4.commands.CommandType.Live) def sayhi(_connection=None): output = sims4.commands.CheatOutput(_connection) output('Hello Sims4') TS4 recognizes and loads TURBODRIVER_WickedWhims_Scripts.ts4script with the recompiled tunable_handler.py (see attached file just needs to be renamed to overwrite the default TURBODRIVER_WickedWhims_Scripts.ts4script). However something low level is probably messing up because uncompiling with uncompyle6 and/or unpyc3 - it doesn't matter which I use - and immediately recompiling with python 3.3 with no modifications to the exhibitionism tunable_handler script (or even with the fixes for the erroneous while loops), changes something somewhere such that none of the Wicked Whim interactions are available once in game. Any ideas? There is no open source of the mod and there won't be, it's not a public project, but it's different for TurboLib. I am slowly developing something that could be used by other developers as a tool to learn Sims 4 script modding. It's nowhere close to being ready, but it contains a bunch of functions related to basic things in the game. The current LL release has a really underdeveloped version of it, so you won't find there much. TurboLib will be a boon to the mod community. I have released a number of projects on github and sourceforge with GPL. Normally when I publish open source I do so with full copyright retained and then a requirement to maintain the notice, but with the ability to allow others to modify the source. So far I haven't experienced anything that has made me regret that decision to be permissive with the source. It has only brought in more eyes to help hunt down bugs and flesh out features. Reinventing the wheel is never fun, anything you can share will help. =) Anyhow, I just want to say again you deserve massive praise for what you have made. Best regards and thanks for making WW! X I don't know, I can't help you with these issues. I am always open to help with individual problems concerning the game itself if you're looking into making your own mod, but it's confusing when you're trying to edit my work. I am fine with that for the most part, as long as the license is followed, but I can't really help you with it too much. I am making TurboLib to help developers make new things, I am not looking to have anybody edit WickedWhims.
210419802 Posted July 5, 2017 Posted July 5, 2017 On Patreon it's good. And here's some update. Something's not clear. Thank you.
TURBODRIVER Posted July 5, 2017 Author Posted July 5, 2017 On Patreon it's good. And here's some update. Something's not clear. Thank you. Right, sorry, forgot to include that, I updated my post. The updated LL release now has support for Female Noir and Dark Sims Penis Models.
MiSFiT203 Posted July 6, 2017 Posted July 6, 2017 is there a way to choose sexual preferance of individual sims? and as always, thanks @turbodriver for all your great work.
Dinopops Posted July 6, 2017 Posted July 6, 2017 Have an issue? This is not the place to post about it! Read how to get help below! Check out the 'WickedWhims Help Center' topic for help! Also known as WickedWoohoo mod. WickedWhims 2.2.3.102.4 - 5 July 2017 Requires The Sims 4 version 1.25.136.1020, 1.29.69.1020, 1.30.105.1010 or 1.31.37.1020 No Expansions, Game Packs or Stuff Packs are required Version 1.25, 1.26, 1.27, 1.28, 1.29, 1.30 or 1.31 will work! Version 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19, 1.20, 1.21, 1.22, 1.23, 1.24 will not work! Make sure to read the FAQ before posting! Download | Project Blog | Tutorials Want early builds of the mod? Check my Patreon! List of changes different from the LoversLab release is available under 'Unreleased Changes' section. What is this mod? WickedWhims is a mod that offers animated sex, exhibitionism interactions, relationship enhancements and gameplay improvements. Do you want your Sims to have sex? Do you want to try exhibitionism and flash your neighbors? Try WickedWhims! For the full list of features check out the list below. New custom interactions, custom mechanics, custom skills, custom traits, custom moodlets, custom whims, custom jobs, custom reactions, support for exhibitionism and sex autonomy interactions, custom story progression and modifications to existing gameplay. Check out the screenshots at the end of the post! Features - Everything You Can Do Sex General Ability to start sex interaction (solo or with a partner)Teasing, Handjob, Footjob, Oraljob, Vaginal, Anal or Random Ability to invite or join to a sex interaction (group sex) Ability to change sex position while in sex at any point in time Ability to swap spots with partners in the sex interaction Ability to end the sex interaction with climax (if available) Ability to undress Sims while in sex interactionUndress completely or outfit top, outfit bottom, leggings, shoes, hat, gloves, glasses, head accessories, left-hand accessories, right-hand accessories, other accessories Ability to use strapon on Sims without a penis Ability to make Sims around a sex interaction go away Sims needs are affected accordingly while in sex Sim phone gets locked and silenced when in sex Sim romantic affection gets increased in sex Configuration file for CAS strapon clothing parts support Relationship Asking for sex scores Sims relationship base on friendship level, romance level, desire level, mood, moodlets, skills, traits, hygiene, relationship status, and situation Asking for sex affects Sims relationship (gender preference, social motive, trait moodlets, conversation moodlets, social context) Sex affects Sims relationship Skill Increasing while in sex and affecting satisfaction of partners Applies satisfaction moodlets after sex based on sex skill, sex skill of partners, fitness skill, traits and randomness Satisfaction moodlets appear with different flavors (happy, energized, focused, inspired, playful, confident) depending on Sim personality Whims Sex with Partner Sex with New Romantic Interest Sex with Someone Sex with Your Date Sex with Someone in Public TraitsCum Slut Satisfaction Reward Trait for 500 points Affects Sim reaction to cum Reactions Jealousy reaction with 6 different flavors and moodlets (base on relationship and respects Player trait) General reaction with 8 different flavors and moodlets (base on the mood, relationship, and family relations) Desire Sims with high enough desire level will gain positive sex desire moodlet Sims with too high desire level will get a negative moodlet, feeling uncomfortable without releasing the tension Sims with active positive desire moodlet will have better sex experience Cum Cum is applied after sex interaction is finished (if animation allows for it) Sims ready to climax can apply cum manually on other Sims in sexFace, Chest, Back, Vagina, Butt, Feet Applies positive or negative cum moodlet depending on Sim traits (Cum Slut, Romantic, Slob, Hates Children) Ability to clean cum by performing hygiene related interactions Taking a shower Taking a bath Going into a hot tub Gussy up in front of a mirror Using a toilet Brushing teeth Swimming Affects NPC Sims autonomy to clean the cum off Pregnancy Usable condom inventory object Ability to order condoms using a computer or buy with Build/Buy Mode Ability to use the condom while in sex interaction to prevent pregnancy (can be used on a group) Pregnancy from vaginal or climax sex interaction (with ability to disable that) Trait 'Hates Children' makes use of condoms automatic Trait 'Hates Children' refuses vaginal and climax sex without protection (Always Accept or disabled pregnancy ignores this rule) Traits 'Lazy' and 'Clumsy' increase the chance of pregnancy in some situations Ability to terminate pregnancy using Sim smartphone Special Moodlets Short 'Sex Outdoors' moodlet from sex outdoors First-Time moodlet after sex with a Sim for the first time Settings Ability to change sex interaction progression: category progression (random animations), stage progression, random progression, disabled Ability to stop sex progression when climax animation is playing Ability to change gender settings to define how genders are considered Ability to change genders recognition to define extra genders rules Ability to enable 'Always Accept' setting which makes every Sim accept every sex proposition Ability to disable relationship impact from sex (located in Relationship Settings) Ability to disable Sims reacting to sex (includes jealousy reaction) Ability to disable cum when Sim is using a condom Ability to enable/disable selected animations Ability to change sex initiation Walk and Talk Instant (requires Always Accept setting to be enabled) Ability to change undressing settings for sex interaction Disable undressing Undress completely Auto undressing Undress shoes when undressing pants Undress leggings when undressing pants Undress socks when undressing shoes Dress up after sex Ability to set sex interaction finish type Time Duration (any time duration in minutes) Stop After Climax Ability to enable/disable sex privacy Ability to disable silencing Sim phone when in sex Ability to override every animation time duration Ability to disable needs decay while in sex Ability to set pregnancy percentage chance Ability to disable cum layers Ability to disable sex progression while in climax position Commands Command 'ww.fix' fixes most of the issues in general Command 'ww.stopsex' stops all sex interactions and fixes broken ones Command 'ww.displayanimations [author]' displays all animations or animations by given actor Command 'ww.applyoffset <sim_first_name> <sim_last_name> <X/Y/Z/A> <amount>' shifts active Sim position Command 'ww.applycum <face/chest/back/vagina/butt/feet> [<first_name> <last_name>]' applies cum on Sim [CHEAT] Command 'ww.clearcum' clears cum from selected Sim [CHEAT] Command 'ww.sxnextlevel' grants level up of sex skill for selected Sim [CHEAT] Command 'ww.givecondom' adds condom to selected Sim inventory [CHEAT] Exhibitionism General Ability to undress clothingTop, Bottom, Shoes, Fully, Top Underwear, Bottom Underwear Ability to flashBoobs, Pussy, Dick, Fully Keeping undressed outfit state when performing specific interactions (yoga, massage, exercise, sleep, etc.) Keeping undressed outfit when going outside Penis erection from looking at naked Sims of preferred gender Automatic undressing when using toilet (with setting to disable that) Enabled skinny dipping, nudity in steam room, nudity in hot tubs and streaking for teens Configuration file for custom CAS feet parts support Penis Penis support for both genders and body frames (penis is applied base on the gender settings in CAS) Automatic system for applying Sim penis mesh Configuration file for CAS penis parts and penis textures support Penis Settings Ability to set soft and hard penis for any Sim Ability to set soft and hard penis for every Sim in the game Ability to randomize penis for every Sim in the game (including the option to exclude default penis mesh) Underwear Ability to change Sim underwear with any dresser object Randomized on NPC Sims from default sets of underwear Ability to globally enable/disable underwear in settings Configuration file for CAS underwear sets support Desire Sims gain desire from seeing nudity and flashing Sims with high enough desire get an erection Skill Nudity related activities increase Sim exhibitionism skill unlocking more optionsUndressing, Flashing, Skinny Dipping, Streaking, Nude in Hot Tub, Nude in Steam Room, Nude Massage, Naked Dance, Nude Workout, Nude Jogging, Nude Yoga, Nude Meditation, Taking Naked Selfies, Taking Photos of Other Nude Sims Mood and traits affect skill progression speed Moodlets for performing exhibitionism related interactions High skill level avoids being embarrassed from nudity Whims Flash Someone Admire Yourself In a Mirror Undress Clothes Talk About Exhibitionism Reactions Sims with high exhibitionism skill level will not react Sims with good relationship will not react to each other nudity NPC Sims with important roles will react only once Sims that had sex will not react to each other nudity Sims with equal or more nude outfit will not react Social Exhibitionism social interaction to Compliment Sexy Body Exhibitionism social interaction to Talk About Exhibitionism Exhibitionism social interaction to Convince To Nudity Exhibitionism social interaction to Ask To Get Naked Exhibitionism social interaction to Ask To Dress Up Story Progression Exhibitionism related activities done with and around NPC Sims will increase influence NPC Sims will learn exhibitionism skill over time if influenced NPC Sims traits affect how quickly they gain experience Autonomy NPC Sims with high enough exhibitionism skill level undress underwear Sims with high enough exhibitionism skill level undress outfit Settings Ability to disable exhibitionism (skill, autonomy, story progression) Ability to disable Sims reacting to nudity Ability to change notifications type settings Ability to display household only related notifications Ability to change autonomy level settings Ability to change story progression settings Ability to disable toilet undressing settings Ability to disable nude outfit assurance system Ability to disable outfit changing interactions behavior Commands Command 'ww.fix' fixes most of the issues in general Command 'ww.fixnudeoutfit' reset every Sim naked outfit with nudity assurance Command 'ww.globalrevertoutfits' reverts every Sim outfit to default Command ‘ww.randomSimsunderwear’ randomizes underwear on all NPC Sims with default or no underwear Command 'ww.exglobalremove' reset exhibitionism skill of every Sim Command 'ww.giveerection' gives selected Sim erection Command 'ww.loseerection' removes erection from selected Sim Command 'ww.triggerautonomy' forces to run exhibitionism autonomy once [CHEAT] Command 'ww.exstoryprogression' runs exhibitionism story progression for one day [CHEAT] Command 'ww.exnextlevel' grants level up of exhibitionism skill for selected Sim [CHEAT] Command 'ww.exremoveskill' removes exhibitionism skill of active Sim [CHEAT] Command 'ww.exglobalnextlevel' grants level up of exhibitionism skill for every Sim [CHEAT] Command 'ww.exglobalmaxlevel' grants max level of exhibitionism skill for every Sim [CHEAT] Relationships General Ability to enable polygamy/polyamory (entire game) Allows for multiple marriages (limited by one engagement at once) Allows for multiple boyfriends/girlfriends Ability to disable Sims jealousy (entire game) Ability to enable incest romance and sex (entire game) Ability to enable romance between adults and teens (entire game) Ability to change Sim gender preference (if enabled in settings) Traits Polyamorous Satisfaction Reward Trait for 1000 points Allows Sims to have multiple open romantic or sexual committed relationships and don’t get jealous about their loved ones having more than one partner Conflicts with the 'Jealous’ trait Incest Satisfaction Reward Trait for 1000 points Allows for incest interactions between relative Sims that have this trait (if not using the global incest setting) Desire Level System Sims gain desire from romantic interactions and other flirt related interactions Sims lose desire on some unsuccessful interactions Sims lose desire on mean social interactions (unless Sim is evil) Sims lose desire over time Sims with Alluring trait help gaining more desire Sims with Romantic trait gain more desire Sims with Unflirty trait gain less desire What are basics of exhibitionism? Exhibitionism skill requires performing nudity related activities and leveling it will give you more confidence to do more exhibitionism interactions. Any occasion your Sim can be nude or in a revealing outfit (sleepwear/swimwear) is a chance to improve the exhibitionism skill. Undressing, Flashing, Skinny Dipping, Streaking, Nude in Hot Tub, Nude in Steam Room, Nude Massage, Naked Dance, Nude Workout, Nude Jogging, Nude Yoga, Nude Meditation, Taking Naked Selfies, Taking Photos of Other Nude Sims will help. Having Sims around when your Sim is nude matters a lot. You can disable exhibitionism in settings to avoid the process of leveling. NPC Sims will learn exhibitionism on their own if influenced. You can influence them by exhibitionism conversations or being nude around them, which will allow them to level up more by every day. Underwear of Sims can be changed by using any dresser object. What are basics of sex? Sex interactions are based on animations which you can download below. Every animation has a different location it can be used at. Look around, probably your bed offers few animations. If you want to start a sex interaction with other Sims then make sure they are nearby when doing it. You can change how genders are considered in settings and use every animation for every Sim. Remember that you can swap sex spots of Sims in sex by clicking on them. If you want to have a threesome or more, start a sex interaction and click on your sim to be able to invite other Sims to the interaction, but remember that you need animations that support more than two Sims. Cum is being applied on Sims after the sex interaction is finished and the type of cum is depended on the animation and it's specified by the creator of the animations if it's allowed at all. For example, if you stop the sex interaction with running oraljob, the cum will be applied on the Sim face. Some animations, like climax animations, could be missing any cum result at the end if not specified by the creator. You can still apply cum manually on Sims if Sims are ready to climax. You can apply cum manually on Sims when they are ready to climax. Climax is another type of animations that are being unlocked while in sex interaction. Not every Sims combination and location have climax animations. If climax is available the option will be visible. Climax is not directly connected with cum and it's not required for cum. Climax animations still play like every other animation, so they are not going to end after single loop (yet). Pregnancy depends on the pregnancy chance set in settings and only occurs during vaginal or climax sex after around 15 seconds, so you have time to use condoms. Pregnancy doesn't happen right away after sex either, so your Sim has a chance to have sex with more partners to mix it up a little. Pregnancy will trigger after two in-game hours or once your Sim does the pregnancy test. Once your Sim is pregnant you can terminate the pregnancy by using that Sim smartphone. Condoms have to be ordered using a computer or bought in Build/Buy menu. Condoms can only be used in already running sex interaction by clicking on them in Sim inventory. Sex skill will affect Sims satisfaction from sex which is represented by gained moodlets after sex. Sims will gain sex skill after sex, more sex will gain them more skill. Desire level will affect Sims satisfaction from sex as well as their acceptance of sex offers. Sims gain desire from romantic interactions and seeing nudity. Want to suggest something? I am always open for suggestions and there is a whole list of ideas collected with the help of people using WickedWhims. Before suggesting anything, check this list and look if your idea isn't already there, but don't hesitate to contribute to an existing suggestion to make it better. It's important to consider suggesting things that will help the current development of the mod instead of big standalone features. Note that all of the suggestions are planned things that are not guaranteed to be added. Development can go different ways and a lot can change. Post suggestions anywhere you want, I will read them eventually. Frequently Asked Questions (FAQ) Make sure to read the 'What are basics of exhibitionism?' and 'What are basics of sex?' sections for more info! I have a problem with the mod. What now? Try using the 'ww.fix' command. Check the WickedWhims Help Center. I am trying to save my game, but there is an error! You're probably using an outdated version of the game. Read at the top of the topic, in red font, what is the minimal version you have to be using for WickedWhims to work correctly. If you're up-to-date, temporarily avoid the problem by using the 'Safe Save' feature in the WickedWhims Settings. After that, please read the instruction below on how to report bugs. Do NPC Sims have sex on their own/Is there autonomy for sex?Not yet, but I am getting there, it will take a while. Thanks for the interest! Is there forced sex?Not yet, but I am getting there, it will take a while. Thanks for the interest! Will sex and exhibitionism be allowed as club activities?Not yet, but I am getting there, it will take a while. Thanks for the interest! Are there gay/lesbian/other animations?Look for more animations, WickedWhims does not limit any genders. If you want to use existing animations with different genders, change 'Gender Settings' and 'Gender Recognition Settings' in Sex Settings. How to enable incest, sex/romance with teens and polygamy/polyamory?All settings related to that can be found in Relationship Settings. I have set to end the sex using climax, but it doesn't happen, why?Current animations system is duration based, so the animations will play for the duration rather than loop count. I am planning on reworking animations to detect loops which should resolve this issue. I am using the Height Slider mod and animations don't align, what to do?Don't use the Height Slider mod. The game is not designed to handle different heights of Sims and there is nothing that can be done to fix this. Want to translate the mod? I am not pushing anybody to translate WickedWhims, but if you want to do it, then go for it. What you need is the language template for the language you want to translate to. You can find all the templates in the attachments of this topic. To edit packages you need DP STBL Editor or TS4 STBL Editor. If you create a package don't send it to me, create your own topic and I will eventually include it here too. Make sure to keep the 'WickedWhims_LP_' prefix in the name of your translation package, otherwise, it will not load the right order. Please don't distribute your translation with the mod included in the package, send people here instead. Known Bugs - Everything That's Wrong Club gathering outfits won't work correctly Sims asking for sex sometimes stand in weird positions when talking Custom list menus shrink in size after using (open and close menu to reset) Teen pregnancy works, but it's not visible on the Sim Default skill learn notification doesn't pop-up when learning skill using manual functions Changelog - How Stuff Progressed 3.2.3.111 July 5th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231024-5-july-2017/page-310?do=findComment&comment=1946940 3.2.3.109 June 28th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231024-14-june-2017/page-307?do=findComment&comment=1940672 2.2.3.108 June 18th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231024-14-june-2017/page-303?do=findComment&comment=1931605 2.2.3.107 June 13th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231023-06-june-2017/page-301?do=findComment&comment=1927569 2.2.3.102.3 / 2.2.3.105 June 06th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231023-06-june-2017/page-296?do=findComment&comment=1920021 2.2.3.102.1 / 2.2.3.104 May 25th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-223102-20-may-2017/page-287?do=findComment&comment=1909459 2.2.3.103 May 20th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-223102-20-may-2017/page-284?do=findComment&comment=1905649 2.2.3.102 May 20th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120956-30-april-2017/page-283?do=findComment&comment=1904972 2.2.3.101 May 7th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120956-30-april-2017/page-278?do=findComment&comment=1893569 2.1.2.095.6 Apr 30th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120956-30-april-2017/page-276?do=findComment&comment=1886724 2.2.3.100 Apr 29th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120955-15-april-2017/page-276?do=findComment&comment=1885876 2.1.2.095.5 Apr 15th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120954-30-march-2017/page-270?do=findComment&comment=1873110 2.1.2.099 Apr 14th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120954-30-march-2017/page-269?do=findComment&comment=1872219 2.1.2.098 Apr 5th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120954-30-march-2017/page-265?do=findComment&comment=1863743 2.1.2.097 / 2.1.2.095.4 Mar 30th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120954-30-march-2017/page-261?do=findComment&comment=1858788 2.1.2.096 / 2.1.2.095.2 Mar 16th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120952-16-march-2017/page-253?do=findComment&comment=1845607 2.1.2.094 Mar 10th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-212093-6-march-2017/page-250?do=findComment&comment=1839711 2.1.2.093 Mar 6th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/?p=1835733 2.1.2.090 Feb 27th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-243?do=findComment&comment=1828340 2.1.2.087 Feb 22nd, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-240?do=findComment&comment=1824423 2.1.2.083 / 2.1.2.084 / 2.1.2.085 Feb 14th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-236?do=findComment&comment=1817318 2.1.2.082 Feb 4th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-229?do=findComment&comment=1807687 2.1.2.081 Jan 31st, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-227?do=findComment&comment=1804020 1.1.2.078/1.1.2.068.7 Jan 24th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-222?do=findComment&comment=1798302 1.1.2.077/1.1.2.068.6 Jan 15th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120686-15-january-2017/page-211?do=findComment&comment=1790217 1.1.2.075/1.1.2.076/1.1.2.068.5 Jan 13th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120685-13-january-2017/page-207?do=findComment&comment=1788068 1.1.2.074 Jan 10th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120684-03-january-2017/page-199?do=findComment&comment=1785534 1.1.2.073 Jan 09th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120684-03-january-2017/page-198?do=findComment&comment=1784579 1.1.2.068.4+1.1.2.072 Jan 03rd, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120684-03-january-2017/page-193?do=findComment&comment=1779309 1.1.2.068.3+1.1.2.071 Jan 02nd, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120683-02-january-2017/page-192?do=findComment&comment=1778076 1.1.2.068.2/1.1.2.070 Dec 25th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120682-25-december-2016/page-187?do=findComment&comment=1771156 1.1.2.068.1/1.1.2.069 Dec 21st, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120681-21-december-2016/page-184?do=findComment&comment=1767953 1.1.2.068 Dec 19th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-112068-19-december-2016/page-181?do=findComment&comment=1766297 1.1.2.060 Nov 29th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-166#entry1749095 1.1.2.058 Nov 24th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-164#entry1747319 1.1.2.056 Nov 17th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-161#entry1738225 1.1.2.055 Nov 11th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-157#entry1732782 1.1.2.053 Nov 7th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-155#entry1729193 1.1.2.052 Oct 31st, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-147#entry1722618 1.1.2.050 Oct 28th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-142#entry1718985 1.1.2.042.5 Oct 28th, 2016 - http://wickedwhims.tumblr.com/post/152419605146/wickedwhims-1120425 1.1.2.049 Oct 22nd, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-136#entry1713478 1.1.2.048 Oct 21st, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-134#entry1712429 1.1.2.042.4 Oct 21st, 2016 - http://wickedwhims.tumblr.com/post/152108791721/wickedwhims-1120424 1.1.2.046 Oct 17th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-130#entry1708943 1.1.2.042.3 Oct 17th, 2016 - http://wickedwhims.tumblr.com/post/151925775651/wickedwhims-1120423 1.1.2.045 Oct 14th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-127#entry1706432 1.1.2.042.1 Oct 13th, 2016 - http://wickedwhims.tumblr.com/post/151743578361/wickedwhims-1120421 1.1.2.044 Oct 12th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-123#entry1704405 1.1.2.043 Oct 11th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-120#entry1703521 1.1.2.041 Oct 9th, 2016 - http://wickedwhims.tumblr.com/post/151552491376/wickedwhims-112041 1.1.2.040 Oct 6th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-110#entry1698766 1.1.2.039 Oct 2nd, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-105#entry1694643 1.1.2.038 Oct 1st, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-104#entry1693899 1.1.2.037 Sep 30th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-103#entry1693001 1.1.2.036 Sep 28th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-101#entry1691488 1.1.1.035 Sep 27th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-99#entry1690542 1.1.1.033 Sep 26th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-99#entry1690542 1.1.1.032 Sep 20th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-93#entry1684119 1.1.1.031 Sep 17th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-87#entry1680416 1.1.1.030 Sep 13th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-82#entry1676358 1.1.1.029 Sep 8th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-73#entry1671264 1.1.1.028 Sep 4th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-68#entry1666850 1.1.1.026 Sep 4th, 2016 - http://wickedwhims.tumblr.com/post/149928850691/wickedwhims-111026 1.1.1.027 Sep 2nd, 2016- http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-66#entry1664887 1.1.1.025 Aug 28th, 2016 - http://wickedwhims.tumblr.com/post/149590119056/wickedwhims-111025 1.1.1.024 Aug 27th, 2016 - http://wickedwhims.tumblr.com/post/149544961436/wickedwhims-111024 1.1.1.023 Aug 26th, 2016 - http://wickedwhims.tumblr.com/post/149501820986/wickedwhims-111023 1.0.1.021-PROTOTYPE Aug 24th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-51#entry1655078 1.0.1.020-PROTOTYPE Aug 22nd, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-48#entry1652814 1.0.1.019-PROTOTYPE Aug 19th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-43#entry1649240 1.0.1.015-PROTOTYPE Aug 14th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/?view=findpost&p=1643629 1.0.1.014-PROTOTYPE Aug 9th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-28#entry1638414 1.0.1.012-PROTOTYPE Aug 7th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-26#entry1636325 1.0.1.011-PROTOTYPE Aug 6th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-23#entry1634837 1.0.1.010-PROTOTYPE Aug 4th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-21#entry1633348 1.0.1.008-PROTOTYPE Jul 31st, 2016 - http://wickedwhims.tumblr.com/post/148248122146/wickedwoohoo-111008-prototype 1.0.1.007-PROTOTYPE Jul 30th, 2016 - http://wickedwhims.tumblr.com/post/148189588351/wickedwoohoo-111007-prototype 1.0.1.006 Jul 3rd, 2016 - http://wickedwhims.tumblr.com/post/146843169781/wickedwoohoo-101006 1.0.1.005 Jul 1st, 2016 - http://wickedwhims.tumblr.com/post/146753810166/wickedwoohoo-101005 1.0.1.004 Jul 1st, 2016 - http://wickedwhims.tumblr.com/post/146743336816/wickedwoohoo-101004 1.0.1.003 Jun 30th, 2016 - http://wickedwhims.tumblr.com/post/146718851656/wickedwoohoo-101003 1.0.1.002 Jun 28th, 2016 - http://wickedwhims.tumblr.com/post/146596748496/wickedwoohoo-101002 1.0.1.001 Jun 26th, 2016 - http://wickedwhims.tumblr.com/post/146504519836/wickedwoohoo-101001 Unreleased Changes - Before LoversLab Release 3.2.3.111 Added support for Female Noir and Dark Sims Penis Models Added 'Next' button in the Wicked menu to quickly progress to the next sex animation Made the mod installation notification message different and changed the color from orange to green Made acceptance of Sim nudity require a little bit of romance relationship before friendship relationship will be considered Made Sims in relationships only pair with their partners for Sex Autonomy on Low and Normal Level Settings (Polyamorous trait excludes this rule) Made non-CAS towel outfit count as revealing outfit Fixed mod data not loading when starting the game on editing a lot Fixed few minor issues with outfits Fixed 'Unique Sex Partners' statistic desync Fixed cum layers moodlets not updating properly Fixed vaginal cum layer being applied on Sims with a penis 3.2.3.109 Added 'Player Sims Autonomy Settings' to allow player Sims sex autonomy Reworked sex autonomy location definition system Reworked sex autonomy main trigger Made sex autonomy trigger from romantic interactions be affected by mood and desire level Fixed Sims reacting to sex when they are about to have sex Reworked Moodlets, Skills, Traits, Whims, Relations, Situations, Roles, Commodities, Motives, Statistics, Interface, Locations, Zones, Lots, Objects, Routing, Interactions and Privacy game utilities and support Reworked core update (tick) support Reworked game commands supportAdded exception security to invoked commands Reworked Save and Load System Added proper support for multiple worlds saves Made saves load in strict order to avoid issues Changed saves location and naming scheme (without backward compatibility) Fixed save system confusing scratch saves Fixed mismatch of data caused by scratch saves 2.2.3.108 Added Autonomy Question Dialog Settings Made kissing transfer face cum to the partner's face Made animations sorted by authors names Improved teen sex limitations Fixed notifications being displayed with delay Fixed Sims not predicting future tasks as safe with current nudity level Fixed underage Sims not reacting to sex or nudity Fixed NPC Sims not being able to enter gender restricted rooms Fixed possible math problems Removed 'Safe Save' option 2.2.3.107 Added sex autonomy trigger from romance related chatter Added question dialog when NPC Sim wants to ask for sex a player Sim Added notification after Sim got possibly pregnant Made pregnancy occur after 5-10 seconds (instead of 15-25 seconds) Made NPC Sims switch sex animations depending on the sex interaction duration (longer sex, longer animations) Made the 'Invite to Stay the Night' interaction allowed for multiple Sims at once Made exhibitionism autonomy less frequent Fixed some romance interactions missing on adult Sims Fixed sex autonomy not respecting the autonomy game setting 2.2.3.105 Added initial sex autonomy for NPC Sims Added sex autonomy level setting (Disabled, Low, Normal, High) Added a notification when NPC Sims start a sex interaction Added 'Stop That!' interaction for NPC Sims sex interaction Added support for Noir and Dark Sims penis models Made player Sims and Sims going to sex location ignore gender specific doors Made animations duration limited to 60 seconds (unless overridden) Improved relationship score system Made changes related to NPC exclusive relations Made NPC Sims count gender preference Made the 'Polyamorous' trait count towards relationship score Improved animations lookup cache Made sure animations can't stage into itself Fixed Sim situations detection not working Fixed Sims getting stuck on locked doors when reacting to sex Fixed Sims not reacting to sex interactions on windows 2.2.3.104 Added support for version 1.30.103.1210 Added Sims Statistics for sex, exhibitionism and other (global settings coming soon) Made sure cum moodlets will always update after cleaning Made exclusive NPC Sims sex interactions not allow for pregnancy (not yet) Made Sims not react to solo teasing sex interaction if the Sim in it is not undressed Fixed underwear randomization command not working Fixed some relationship tests not working 2.2.3.103 Added support for exclusive NPC sex interaction Added ability to start NPC sex interactions Unlocked with 'ww.manualnpcsex' command Added setting for NPC sex interaction duration (by default 3 minutes) NPC Sims will try to end the sex interaction after set time in settings or after climax if possible Made sex interaction animations not stage to climax if it's not available yet Made sex interaction animations progression allow climax Improved sex interaction animations progression Teasing -> Handjob/Footjob -> Oraljob Oraljob -> Vaginal/Anal/Climax Vaginal/Anal -> Oraljob/Vaginal/Anal/Climax Climax (if can progress after climax) -> Handjob/Oraljob/Vaginal/Anal Fixed Sims not always leaving after reacting to sex Fixed Sims fighting privacy rules when going to the sex location Installation - Really Easy! If you have previously installed mods for The Sims 4 then you should be familar with this process. If you're using the Windows Installer version then skip this instruction. Make sure to remove WickedWhims files before using the installer if you had the mod installed manually before. 1. Open the downloaded mod archive file with an archive manager. Example archive managers: Windows - WinRAR / 7-Zip Linux - p7zip Mac - Keka 2. Open the folder for The Sims 4 Mods (Documents\Electronic Arts\The Sims 4\Mods). 3. Drag the 'WickedWhimsMod' folder from the archive manager to opened The Sims 4 Mods folder. <ANIMATION> 4. Turn the game on and open 'Game Options'. <IMAGE> 5. Open the 'Other' section and check the 'Enable Custom Content and Mods' and the 'Script Mods Allowed' settings. <IMAGE> 6. Turn the game off and on again. If you're missing the 'Resource.cfg' file in the Mods folder or you suspect it's invalid - remove it, turn the game on and turn the game off, it should be there again.Make sure you have not placed the mod files into too many folders. If the files are too deep into folders the game will not be able to find the files. <IMAGE> Installation of sex animations is exactly the same. Download the animation package, extract it with an archive manager and put the 'PACKAGE' file to The Sims 4 Mods folder. Download - Really Fast! Use Download Section on LoversLab or Download on my blog. Required Mods - You Need This! Sex animations available below are required for more sex positions! No additional mods are required to use all available functionalities of WickedWhims! WickedWhims doesn't provide full anatomy skins for Sims, you can find these in Optional Mods section or anywhere on the internet. Optional Mods - You May Need This! Below you will find additional mods that are completely optional. > Hiroki Better Body Mod - http://www.loverslab.com/files/file/3682-sims-4-better-body/ > Untraditional Nerd Detailed Feet (non-replacement) - http://untraditionalnerd.tumblr.com/Feet > Female/Male Skin Replacement & 3D nipples by Luumia - http://luumiasims.com/post/152404590469/body-redux3-new-body-replacements-to-improve-your > Female/Male Skin Replacement by Cmar - http://cmarnyc.blogspot.com/2014/09/sims-4-default-replacement-adult-skins.html > Azmodan22 Female Strapon Mod - http://www.loverslab.com/topic/70340-azmodan22-female-strapon-collection-updated-09122016/ > Noir and Dark Sims Penis Models - http://www.loverslab.com/topic/79046-sims-4-pornstar-cock-set-for-adult-males-and-wickedwhims/ > LunarEclipse Penis Models - http://www.loverslab.com/topic/69770-sims-4-lunar-eclipse-new-hd-hardpenis-model-casver-wickedwhims-compatible/ > Untraditional Nerd Soft Penis Model (non-replacement) - http://untraditionalnerd.tumblr.com/post/138432671920/download-detailed-bottom-aka-penis-mod > Azmodan22 Bondage Devices Mod - http://www.loverslab.com/files/file/3527-bondage-devices/ > YrSa BDSM Devices Mod - http://www.loverslab.com/files/file/4070-sims4-yrsa-bdsm-devices/ Animations - Required for sex This is the list of available animations for WickedWhims (if you find more or created more, tell me). To use sex interactions you need sex animations. Few are built-in to the mod, but you should check these out: Amra72 Animations Mike24 Animations Omaster Animations Lupobianco Animations Zorak Animations Anarcis Animations Azmodan22 Animations Redabyss Animations MinorLaser Animations Anonny Animations Slimreaper23 Animations Dagger Animations R-Lo Animations AOS Animations YrSa Animations OTE Animations PeachyPie Animations wild_guy Animations Bioaddict Animations Vivid369 Animations KLM Animations Eksclusiv Animations MeowHeaven Animations Shiro Animations MaryJane Animations jmem0 Animations Leksana Animations sames99113 Animations INKkan Animations Luxure Animations Golden88 Animations ooOLaLa Animations Desireee Animations Slash Animations Diba Animations Rodriguez Animations Translations - Do you understand? Translations are made by glorious members of the community. dardev French Translation TheSoulrester German Translation Isolina Italian Translation wild_guy Russian Translation Vampiressa Spanish Translation RealAFA Portuguese Translation lrdpaul Chinese Traditional Translation blobby666 Dutch Translation Support - Really Hungry! If you like my project, have money and you're willing to support me - then please do it. Without support, eventually, the project cannot be continued. Patreon: patreon.com/wickedwoohoo - You can use PayPal too! Tutorials - If you feel creative This is the list of tutorials I've made for creating animations for WickedWhims step-by-step. If you're interested in creating animations for Sims 4 then check them out! If you have problems with creating animations or understanding the tutorials - send me a private message. Creating Basic Animations in Blender (Redabyss Tutorial) Converting Blender Animations to Clips Creating WickedWhims Animations Package Creating WickedWhims Animation XML File Exporting Objects from Sims 4 Adding Events to Animations Do you have a problem? Go ahead and check the WickedWhims Help Center. If you want to report a bug then post about it over here. Errors, issues, crashes and other should go through the WickedWhims Help Center. Credits - Important People Thank you to... CmarNYC for soft penis mesh (http://www.sexysims.info/download.php?t=174682) CmarNYC and biondosim for hard penis mesh (http://sexysims.info/download.php?t=175352) ZoahcX for improvement of hard penis mesh Kirirhyn for modification of soft and hard penis mesh to fit for female Sims Luumia for logo, condom object and cum textures (http://luumiasims.com/) derover for exhibitionism icon Redabyss for adding sounds to my animations Peter Jones, ChaosMageX, andrewtavera, granthes, snaitf, IngeJones, Kuree, pboxx, CmarNYC and Buzzler for S4PE (https://github.com/s4ptacle/Sims4Tools) andrew and orangemittens for Sims4Studio (http://sims4studio.com/) Deaderpool for DP STBL (http://modthesims.info/m/8435027) Fogity for ModdingToolbox (http://modthesims.info/showpost.php?p=4732780) velocitygrass for Sims4Data (http://modthesims.info/t/531876) scumbumbo for TS4 Tuning Description Browser (http://modthesims.info/t/555233) and XML Extractor for The Sims 4 (http://modthesims.info/d/563256) CmarNYC for TS4 Package Searcher (http://modthesims.info/d/573139) mgomez for Sims 4 Python File Decompiler Automation Script (http://modthesims.info/t/540664) The community for help, suggestions and support Blender Foundation for Blender, JetBrains for PyCharm and Maxis for The Sims 4 Do you have any questions? If you're not sure about something, want to know something about me or the project or just want to say something nice (or not) - feel free to a post here or write a private message to me! Screenshots & Videos Darkening Demise 1.pngEksclusiv 1.pngjmem0 1.pngjmem0 2.pngjmem0 3.pngjmem0 4.pngJoeLewis 1.pngJoeLewis 2.pngJoeLewis 3.pngJoeLewis 4.pngMaryJane 1.pngMerlinaXX 1.pngmungo10 1.pngSer_ArthurDayne 1.pngSlick Clyde 1.pngSlick Clyde 2.pngspenndragin 1.pngspenndragin 2.pngspenndragin 3.pngThe Afro Samurai 1.pngthewatcher1 1.pngthewatcher1 2.pngtoby5124 1.pngTURBODRIVER 1.pngWarren Zevon 1.pngWarren Zevon 2.pngEctoplasma 1.pngEctoplasma 2.pngGokcenC.pngThePauly87.pngTurisas.png https://vimeo.com/217458441 https://vimeo.com/217801604 https://vimeo.com/218244595 everything has been working perfectly on the past updates, but I have a problem, I can't run, or well, the Sims 4 game won't find, load, or run the script, it on update v1.31.37.1220, is this just me, or is the game not updated for my version??? Have an issue? This is not the place to post about it! Read how to get help below! Check out the 'WickedWhims Help Center' topic for help! Also known as WickedWoohoo mod. WickedWhims 2.2.3.102.4 - 5 July 2017 Requires The Sims 4 version 1.25.136.1020, 1.29.69.1020, 1.30.105.1010 or 1.31.37.1020 No Expansions, Game Packs or Stuff Packs are required Version 1.25, 1.26, 1.27, 1.28, 1.29, 1.30 or 1.31 will work! Version 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19, 1.20, 1.21, 1.22, 1.23, 1.24 will not work! Make sure to read the FAQ before posting! Download | Project Blog | Tutorials Want early builds of the mod? Check my Patreon! List of changes different from the LoversLab release is available under 'Unreleased Changes' section. What is this mod? WickedWhims is a mod that offers animated sex, exhibitionism interactions, relationship enhancements and gameplay improvements. Do you want your Sims to have sex? Do you want to try exhibitionism and flash your neighbors? Try WickedWhims! For the full list of features check out the list below. New custom interactions, custom mechanics, custom skills, custom traits, custom moodlets, custom whims, custom jobs, custom reactions, support for exhibitionism and sex autonomy interactions, custom story progression and modifications to existing gameplay. Check out the screenshots at the end of the post! Features - Everything You Can Do Sex General Ability to start sex interaction (solo or with a partner)Teasing, Handjob, Footjob, Oraljob, Vaginal, Anal or Random Ability to invite or join to a sex interaction (group sex) Ability to change sex position while in sex at any point in time Ability to swap spots with partners in the sex interaction Ability to end the sex interaction with climax (if available) Ability to undress Sims while in sex interactionUndress completely or outfit top, outfit bottom, leggings, shoes, hat, gloves, glasses, head accessories, left-hand accessories, right-hand accessories, other accessories Ability to use strapon on Sims without a penis Ability to make Sims around a sex interaction go away Sims needs are affected accordingly while in sex Sim phone gets locked and silenced when in sex Sim romantic affection gets increased in sex Configuration file for CAS strapon clothing parts support Relationship Asking for sex scores Sims relationship base on friendship level, romance level, desire level, mood, moodlets, skills, traits, hygiene, relationship status, and situation Asking for sex affects Sims relationship (gender preference, social motive, trait moodlets, conversation moodlets, social context) Sex affects Sims relationship Skill Increasing while in sex and affecting satisfaction of partners Applies satisfaction moodlets after sex based on sex skill, sex skill of partners, fitness skill, traits and randomness Satisfaction moodlets appear with different flavors (happy, energized, focused, inspired, playful, confident) depending on Sim personality Whims Sex with Partner Sex with New Romantic Interest Sex with Someone Sex with Your Date Sex with Someone in Public TraitsCum Slut Satisfaction Reward Trait for 500 points Affects Sim reaction to cum Reactions Jealousy reaction with 6 different flavors and moodlets (base on relationship and respects Player trait) General reaction with 8 different flavors and moodlets (base on the mood, relationship, and family relations) Desire Sims with high enough desire level will gain positive sex desire moodlet Sims with too high desire level will get a negative moodlet, feeling uncomfortable without releasing the tension Sims with active positive desire moodlet will have better sex experience Cum Cum is applied after sex interaction is finished (if animation allows for it) Sims ready to climax can apply cum manually on other Sims in sexFace, Chest, Back, Vagina, Butt, Feet Applies positive or negative cum moodlet depending on Sim traits (Cum Slut, Romantic, Slob, Hates Children) Ability to clean cum by performing hygiene related interactions Taking a shower Taking a bath Going into a hot tub Gussy up in front of a mirror Using a toilet Brushing teeth Swimming Affects NPC Sims autonomy to clean the cum off Pregnancy Usable condom inventory object Ability to order condoms using a computer or buy with Build/Buy Mode Ability to use the condom while in sex interaction to prevent pregnancy (can be used on a group) Pregnancy from vaginal or climax sex interaction (with ability to disable that) Trait 'Hates Children' makes use of condoms automatic Trait 'Hates Children' refuses vaginal and climax sex without protection (Always Accept or disabled pregnancy ignores this rule) Traits 'Lazy' and 'Clumsy' increase the chance of pregnancy in some situations Ability to terminate pregnancy using Sim smartphone Special Moodlets Short 'Sex Outdoors' moodlet from sex outdoors First-Time moodlet after sex with a Sim for the first time Settings Ability to change sex interaction progression: category progression (random animations), stage progression, random progression, disabled Ability to stop sex progression when climax animation is playing Ability to change gender settings to define how genders are considered Ability to change genders recognition to define extra genders rules Ability to enable 'Always Accept' setting which makes every Sim accept every sex proposition Ability to disable relationship impact from sex (located in Relationship Settings) Ability to disable Sims reacting to sex (includes jealousy reaction) Ability to disable cum when Sim is using a condom Ability to enable/disable selected animations Ability to change sex initiation Walk and Talk Instant (requires Always Accept setting to be enabled) Ability to change undressing settings for sex interaction Disable undressing Undress completely Auto undressing Undress shoes when undressing pants Undress leggings when undressing pants Undress socks when undressing shoes Dress up after sex Ability to set sex interaction finish type Time Duration (any time duration in minutes) Stop After Climax Ability to enable/disable sex privacy Ability to disable silencing Sim phone when in sex Ability to override every animation time duration Ability to disable needs decay while in sex Ability to set pregnancy percentage chance Ability to disable cum layers Ability to disable sex progression while in climax position Commands Command 'ww.fix' fixes most of the issues in general Command 'ww.stopsex' stops all sex interactions and fixes broken ones Command 'ww.displayanimations [author]' displays all animations or animations by given actor Command 'ww.applyoffset <sim_first_name> <sim_last_name> <X/Y/Z/A> <amount>' shifts active Sim position Command 'ww.applycum <face/chest/back/vagina/butt/feet> [<first_name> <last_name>]' applies cum on Sim [CHEAT] Command 'ww.clearcum' clears cum from selected Sim [CHEAT] Command 'ww.sxnextlevel' grants level up of sex skill for selected Sim [CHEAT] Command 'ww.givecondom' adds condom to selected Sim inventory [CHEAT] Exhibitionism General Ability to undress clothingTop, Bottom, Shoes, Fully, Top Underwear, Bottom Underwear Ability to flashBoobs, Pussy, Dick, Fully Keeping undressed outfit state when performing specific interactions (yoga, massage, exercise, sleep, etc.) Keeping undressed outfit when going outside Penis erection from looking at naked Sims of preferred gender Automatic undressing when using toilet (with setting to disable that) Enabled skinny dipping, nudity in steam room, nudity in hot tubs and streaking for teens Configuration file for custom CAS feet parts support Penis Penis support for both genders and body frames (penis is applied base on the gender settings in CAS) Automatic system for applying Sim penis mesh Configuration file for CAS penis parts and penis textures support Penis Settings Ability to set soft and hard penis for any Sim Ability to set soft and hard penis for every Sim in the game Ability to randomize penis for every Sim in the game (including the option to exclude default penis mesh) Underwear Ability to change Sim underwear with any dresser object Randomized on NPC Sims from default sets of underwear Ability to globally enable/disable underwear in settings Configuration file for CAS underwear sets support Desire Sims gain desire from seeing nudity and flashing Sims with high enough desire get an erection Skill Nudity related activities increase Sim exhibitionism skill unlocking more optionsUndressing, Flashing, Skinny Dipping, Streaking, Nude in Hot Tub, Nude in Steam Room, Nude Massage, Naked Dance, Nude Workout, Nude Jogging, Nude Yoga, Nude Meditation, Taking Naked Selfies, Taking Photos of Other Nude Sims Mood and traits affect skill progression speed Moodlets for performing exhibitionism related interactions High skill level avoids being embarrassed from nudity Whims Flash Someone Admire Yourself In a Mirror Undress Clothes Talk About Exhibitionism Reactions Sims with high exhibitionism skill level will not react Sims with good relationship will not react to each other nudity NPC Sims with important roles will react only once Sims that had sex will not react to each other nudity Sims with equal or more nude outfit will not react Social Exhibitionism social interaction to Compliment Sexy Body Exhibitionism social interaction to Talk About Exhibitionism Exhibitionism social interaction to Convince To Nudity Exhibitionism social interaction to Ask To Get Naked Exhibitionism social interaction to Ask To Dress Up Story Progression Exhibitionism related activities done with and around NPC Sims will increase influence NPC Sims will learn exhibitionism skill over time if influenced NPC Sims traits affect how quickly they gain experience Autonomy NPC Sims with high enough exhibitionism skill level undress underwear Sims with high enough exhibitionism skill level undress outfit Settings Ability to disable exhibitionism (skill, autonomy, story progression) Ability to disable Sims reacting to nudity Ability to change notifications type settings Ability to display household only related notifications Ability to change autonomy level settings Ability to change story progression settings Ability to disable toilet undressing settings Ability to disable nude outfit assurance system Ability to disable outfit changing interactions behavior Commands Command 'ww.fix' fixes most of the issues in general Command 'ww.fixnudeoutfit' reset every Sim naked outfit with nudity assurance Command 'ww.globalrevertoutfits' reverts every Sim outfit to default Command ‘ww.randomSimsunderwear’ randomizes underwear on all NPC Sims with default or no underwear Command 'ww.exglobalremove' reset exhibitionism skill of every Sim Command 'ww.giveerection' gives selected Sim erection Command 'ww.loseerection' removes erection from selected Sim Command 'ww.triggerautonomy' forces to run exhibitionism autonomy once [CHEAT] Command 'ww.exstoryprogression' runs exhibitionism story progression for one day [CHEAT] Command 'ww.exnextlevel' grants level up of exhibitionism skill for selected Sim [CHEAT] Command 'ww.exremoveskill' removes exhibitionism skill of active Sim [CHEAT] Command 'ww.exglobalnextlevel' grants level up of exhibitionism skill for every Sim [CHEAT] Command 'ww.exglobalmaxlevel' grants max level of exhibitionism skill for every Sim [CHEAT] Relationships General Ability to enable polygamy/polyamory (entire game) Allows for multiple marriages (limited by one engagement at once) Allows for multiple boyfriends/girlfriends Ability to disable Sims jealousy (entire game) Ability to enable incest romance and sex (entire game) Ability to enable romance between adults and teens (entire game) Ability to change Sim gender preference (if enabled in settings) Traits Polyamorous Satisfaction Reward Trait for 1000 points Allows Sims to have multiple open romantic or sexual committed relationships and don’t get jealous about their loved ones having more than one partner Conflicts with the 'Jealous’ trait Incest Satisfaction Reward Trait for 1000 points Allows for incest interactions between relative Sims that have this trait (if not using the global incest setting) Desire Level System Sims gain desire from romantic interactions and other flirt related interactions Sims lose desire on some unsuccessful interactions Sims lose desire on mean social interactions (unless Sim is evil) Sims lose desire over time Sims with Alluring trait help gaining more desire Sims with Romantic trait gain more desire Sims with Unflirty trait gain less desire What are basics of exhibitionism? Exhibitionism skill requires performing nudity related activities and leveling it will give you more confidence to do more exhibitionism interactions. Any occasion your Sim can be nude or in a revealing outfit (sleepwear/swimwear) is a chance to improve the exhibitionism skill. Undressing, Flashing, Skinny Dipping, Streaking, Nude in Hot Tub, Nude in Steam Room, Nude Massage, Naked Dance, Nude Workout, Nude Jogging, Nude Yoga, Nude Meditation, Taking Naked Selfies, Taking Photos of Other Nude Sims will help. Having Sims around when your Sim is nude matters a lot. You can disable exhibitionism in settings to avoid the process of leveling. NPC Sims will learn exhibitionism on their own if influenced. You can influence them by exhibitionism conversations or being nude around them, which will allow them to level up more by every day. Underwear of Sims can be changed by using any dresser object. What are basics of sex? Sex interactions are based on animations which you can download below. Every animation has a different location it can be used at. Look around, probably your bed offers few animations. If you want to start a sex interaction with other Sims then make sure they are nearby when doing it. You can change how genders are considered in settings and use every animation for every Sim. Remember that you can swap sex spots of Sims in sex by clicking on them. If you want to have a threesome or more, start a sex interaction and click on your sim to be able to invite other Sims to the interaction, but remember that you need animations that support more than two Sims. Cum is being applied on Sims after the sex interaction is finished and the type of cum is depended on the animation and it's specified by the creator of the animations if it's allowed at all. For example, if you stop the sex interaction with running oraljob, the cum will be applied on the Sim face. Some animations, like climax animations, could be missing any cum result at the end if not specified by the creator. You can still apply cum manually on Sims if Sims are ready to climax. You can apply cum manually on Sims when they are ready to climax. Climax is another type of animations that are being unlocked while in sex interaction. Not every Sims combination and location have climax animations. If climax is available the option will be visible. Climax is not directly connected with cum and it's not required for cum. Climax animations still play like every other animation, so they are not going to end after single loop (yet). Pregnancy depends on the pregnancy chance set in settings and only occurs during vaginal or climax sex after around 15 seconds, so you have time to use condoms. Pregnancy doesn't happen right away after sex either, so your Sim has a chance to have sex with more partners to mix it up a little. Pregnancy will trigger after two in-game hours or once your Sim does the pregnancy test. Once your Sim is pregnant you can terminate the pregnancy by using that Sim smartphone. Condoms have to be ordered using a computer or bought in Build/Buy menu. Condoms can only be used in already running sex interaction by clicking on them in Sim inventory. Sex skill will affect Sims satisfaction from sex which is represented by gained moodlets after sex. Sims will gain sex skill after sex, more sex will gain them more skill. Desire level will affect Sims satisfaction from sex as well as their acceptance of sex offers. Sims gain desire from romantic interactions and seeing nudity. Want to suggest something? I am always open for suggestions and there is a whole list of ideas collected with the help of people using WickedWhims. Before suggesting anything, check this list and look if your idea isn't already there, but don't hesitate to contribute to an existing suggestion to make it better. It's important to consider suggesting things that will help the current development of the mod instead of big standalone features. Note that all of the suggestions are planned things that are not guaranteed to be added. Development can go different ways and a lot can change. Post suggestions anywhere you want, I will read them eventually. Frequently Asked Questions (FAQ) Make sure to read the 'What are basics of exhibitionism?' and 'What are basics of sex?' sections for more info! I have a problem with the mod. What now? Try using the 'ww.fix' command. Check the WickedWhims Help Center. I am trying to save my game, but there is an error! You're probably using an outdated version of the game. Read at the top of the topic, in red font, what is the minimal version you have to be using for WickedWhims to work correctly. If you're up-to-date, temporarily avoid the problem by using the 'Safe Save' feature in the WickedWhims Settings. After that, please read the instruction below on how to report bugs. Do NPC Sims have sex on their own/Is there autonomy for sex?Not yet, but I am getting there, it will take a while. Thanks for the interest! Is there forced sex?Not yet, but I am getting there, it will take a while. Thanks for the interest! Will sex and exhibitionism be allowed as club activities?Not yet, but I am getting there, it will take a while. Thanks for the interest! Are there gay/lesbian/other animations?Look for more animations, WickedWhims does not limit any genders. If you want to use existing animations with different genders, change 'Gender Settings' and 'Gender Recognition Settings' in Sex Settings. How to enable incest, sex/romance with teens and polygamy/polyamory?All settings related to that can be found in Relationship Settings. I have set to end the sex using climax, but it doesn't happen, why?Current animations system is duration based, so the animations will play for the duration rather than loop count. I am planning on reworking animations to detect loops which should resolve this issue. I am using the Height Slider mod and animations don't align, what to do?Don't use the Height Slider mod. The game is not designed to handle different heights of Sims and there is nothing that can be done to fix this. Want to translate the mod? I am not pushing anybody to translate WickedWhims, but if you want to do it, then go for it. What you need is the language template for the language you want to translate to. You can find all the templates in the attachments of this topic. To edit packages you need DP STBL Editor or TS4 STBL Editor. If you create a package don't send it to me, create your own topic and I will eventually include it here too. Make sure to keep the 'WickedWhims_LP_' prefix in the name of your translation package, otherwise, it will not load the right order. Please don't distribute your translation with the mod included in the package, send people here instead. Known Bugs - Everything That's Wrong Club gathering outfits won't work correctly Sims asking for sex sometimes stand in weird positions when talking Custom list menus shrink in size after using (open and close menu to reset) Teen pregnancy works, but it's not visible on the Sim Default skill learn notification doesn't pop-up when learning skill using manual functions Changelog - How Stuff Progressed 3.2.3.111 July 5th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231024-5-july-2017/page-310?do=findComment&comment=1946940 3.2.3.109 June 28th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231024-14-june-2017/page-307?do=findComment&comment=1940672 2.2.3.108 June 18th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231024-14-june-2017/page-303?do=findComment&comment=1931605 2.2.3.107 June 13th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231023-06-june-2017/page-301?do=findComment&comment=1927569 2.2.3.102.3 / 2.2.3.105 June 06th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2231023-06-june-2017/page-296?do=findComment&comment=1920021 2.2.3.102.1 / 2.2.3.104 May 25th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-223102-20-may-2017/page-287?do=findComment&comment=1909459 2.2.3.103 May 20th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-223102-20-may-2017/page-284?do=findComment&comment=1905649 2.2.3.102 May 20th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120956-30-april-2017/page-283?do=findComment&comment=1904972 2.2.3.101 May 7th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120956-30-april-2017/page-278?do=findComment&comment=1893569 2.1.2.095.6 Apr 30th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120956-30-april-2017/page-276?do=findComment&comment=1886724 2.2.3.100 Apr 29th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120955-15-april-2017/page-276?do=findComment&comment=1885876 2.1.2.095.5 Apr 15th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120954-30-march-2017/page-270?do=findComment&comment=1873110 2.1.2.099 Apr 14th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120954-30-march-2017/page-269?do=findComment&comment=1872219 2.1.2.098 Apr 5th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120954-30-march-2017/page-265?do=findComment&comment=1863743 2.1.2.097 / 2.1.2.095.4 Mar 30th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120954-30-march-2017/page-261?do=findComment&comment=1858788 2.1.2.096 / 2.1.2.095.2 Mar 16th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-2120952-16-march-2017/page-253?do=findComment&comment=1845607 2.1.2.094 Mar 10th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-212093-6-march-2017/page-250?do=findComment&comment=1839711 2.1.2.093 Mar 6th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/?p=1835733 2.1.2.090 Feb 27th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-243?do=findComment&comment=1828340 2.1.2.087 Feb 22nd, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-240?do=findComment&comment=1824423 2.1.2.083 / 2.1.2.084 / 2.1.2.085 Feb 14th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-236?do=findComment&comment=1817318 2.1.2.082 Feb 4th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-229?do=findComment&comment=1807687 2.1.2.081 Jan 31st, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-227?do=findComment&comment=1804020 1.1.2.078/1.1.2.068.7 Jan 24th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120687-24-january-2017/page-222?do=findComment&comment=1798302 1.1.2.077/1.1.2.068.6 Jan 15th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120686-15-january-2017/page-211?do=findComment&comment=1790217 1.1.2.075/1.1.2.076/1.1.2.068.5 Jan 13th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120685-13-january-2017/page-207?do=findComment&comment=1788068 1.1.2.074 Jan 10th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120684-03-january-2017/page-199?do=findComment&comment=1785534 1.1.2.073 Jan 09th, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120684-03-january-2017/page-198?do=findComment&comment=1784579 1.1.2.068.4+1.1.2.072 Jan 03rd, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120684-03-january-2017/page-193?do=findComment&comment=1779309 1.1.2.068.3+1.1.2.071 Jan 02nd, 2017 - http://www.loverslab.com/topic/66213-wickedwhims-1120683-02-january-2017/page-192?do=findComment&comment=1778076 1.1.2.068.2/1.1.2.070 Dec 25th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120682-25-december-2016/page-187?do=findComment&comment=1771156 1.1.2.068.1/1.1.2.069 Dec 21st, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120681-21-december-2016/page-184?do=findComment&comment=1767953 1.1.2.068 Dec 19th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-112068-19-december-2016/page-181?do=findComment&comment=1766297 1.1.2.060 Nov 29th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-166#entry1749095 1.1.2.058 Nov 24th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-164#entry1747319 1.1.2.056 Nov 17th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-161#entry1738225 1.1.2.055 Nov 11th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-157#entry1732782 1.1.2.053 Nov 7th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-155#entry1729193 1.1.2.052 Oct 31st, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-147#entry1722618 1.1.2.050 Oct 28th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-142#entry1718985 1.1.2.042.5 Oct 28th, 2016 - http://wickedwhims.tumblr.com/post/152419605146/wickedwhims-1120425 1.1.2.049 Oct 22nd, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-136#entry1713478 1.1.2.048 Oct 21st, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-134#entry1712429 1.1.2.042.4 Oct 21st, 2016 - http://wickedwhims.tumblr.com/post/152108791721/wickedwhims-1120424 1.1.2.046 Oct 17th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-130#entry1708943 1.1.2.042.3 Oct 17th, 2016 - http://wickedwhims.tumblr.com/post/151925775651/wickedwhims-1120423 1.1.2.045 Oct 14th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-127#entry1706432 1.1.2.042.1 Oct 13th, 2016 - http://wickedwhims.tumblr.com/post/151743578361/wickedwhims-1120421 1.1.2.044 Oct 12th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-123#entry1704405 1.1.2.043 Oct 11th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-120#entry1703521 1.1.2.041 Oct 9th, 2016 - http://wickedwhims.tumblr.com/post/151552491376/wickedwhims-112041 1.1.2.040 Oct 6th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-110#entry1698766 1.1.2.039 Oct 2nd, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-105#entry1694643 1.1.2.038 Oct 1st, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-104#entry1693899 1.1.2.037 Sep 30th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-103#entry1693001 1.1.2.036 Sep 28th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-101#entry1691488 1.1.1.035 Sep 27th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-99#entry1690542 1.1.1.033 Sep 26th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-99#entry1690542 1.1.1.032 Sep 20th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-93#entry1684119 1.1.1.031 Sep 17th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-87#entry1680416 1.1.1.030 Sep 13th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-82#entry1676358 1.1.1.029 Sep 8th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-73#entry1671264 1.1.1.028 Sep 4th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-68#entry1666850 1.1.1.026 Sep 4th, 2016 - http://wickedwhims.tumblr.com/post/149928850691/wickedwhims-111026 1.1.1.027 Sep 2nd, 2016- http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-66#entry1664887 1.1.1.025 Aug 28th, 2016 - http://wickedwhims.tumblr.com/post/149590119056/wickedwhims-111025 1.1.1.024 Aug 27th, 2016 - http://wickedwhims.tumblr.com/post/149544961436/wickedwhims-111024 1.1.1.023 Aug 26th, 2016 - http://wickedwhims.tumblr.com/post/149501820986/wickedwhims-111023 1.0.1.021-PROTOTYPE Aug 24th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-51#entry1655078 1.0.1.020-PROTOTYPE Aug 22nd, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-48#entry1652814 1.0.1.019-PROTOTYPE Aug 19th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-43#entry1649240 1.0.1.015-PROTOTYPE Aug 14th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/?view=findpost&p=1643629 1.0.1.014-PROTOTYPE Aug 9th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-28#entry1638414 1.0.1.012-PROTOTYPE Aug 7th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-26#entry1636325 1.0.1.011-PROTOTYPE Aug 6th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-23#entry1634837 1.0.1.010-PROTOTYPE Aug 4th, 2016 - http://www.loverslab.com/topic/66213-wickedwhims-1120426-29-october 2016/page-21#entry1633348 1.0.1.008-PROTOTYPE Jul 31st, 2016 - http://wickedwhims.tumblr.com/post/148248122146/wickedwoohoo-111008-prototype 1.0.1.007-PROTOTYPE Jul 30th, 2016 - http://wickedwhims.tumblr.com/post/148189588351/wickedwoohoo-111007-prototype 1.0.1.006 Jul 3rd, 2016 - http://wickedwhims.tumblr.com/post/146843169781/wickedwoohoo-101006 1.0.1.005 Jul 1st, 2016 - http://wickedwhims.tumblr.com/post/146753810166/wickedwoohoo-101005 1.0.1.004 Jul 1st, 2016 - http://wickedwhims.tumblr.com/post/146743336816/wickedwoohoo-101004 1.0.1.003 Jun 30th, 2016 - http://wickedwhims.tumblr.com/post/146718851656/wickedwoohoo-101003 1.0.1.002 Jun 28th, 2016 - http://wickedwhims.tumblr.com/post/146596748496/wickedwoohoo-101002 1.0.1.001 Jun 26th, 2016 - http://wickedwhims.tumblr.com/post/146504519836/wickedwoohoo-101001 Unreleased Changes - Before LoversLab Release 3.2.3.111 Added support for Female Noir and Dark Sims Penis Models Added 'Next' button in the Wicked menu to quickly progress to the next sex animation Made the mod installation notification message different and changed the color from orange to green Made acceptance of Sim nudity require a little bit of romance relationship before friendship relationship will be considered Made Sims in relationships only pair with their partners for Sex Autonomy on Low and Normal Level Settings (Polyamorous trait excludes this rule) Made non-CAS towel outfit count as revealing outfit Fixed mod data not loading when starting the game on editing a lot Fixed few minor issues with outfits Fixed 'Unique Sex Partners' statistic desync Fixed cum layers moodlets not updating properly Fixed vaginal cum layer being applied on Sims with a penis 3.2.3.109 Added 'Player Sims Autonomy Settings' to allow player Sims sex autonomy Reworked sex autonomy location definition system Reworked sex autonomy main trigger Made sex autonomy trigger from romantic interactions be affected by mood and desire level Fixed Sims reacting to sex when they are about to have sex Reworked Moodlets, Skills, Traits, Whims, Relations, Situations, Roles, Commodities, Motives, Statistics, Interface, Locations, Zones, Lots, Objects, Routing, Interactions and Privacy game utilities and support Reworked core update (tick) support Reworked game commands supportAdded exception security to invoked commands Reworked Save and Load System Added proper support for multiple worlds saves Made saves load in strict order to avoid issues Changed saves location and naming scheme (without backward compatibility) Fixed save system confusing scratch saves Fixed mismatch of data caused by scratch saves 2.2.3.108 Added Autonomy Question Dialog Settings Made kissing transfer face cum to the partner's face Made animations sorted by authors names Improved teen sex limitations Fixed notifications being displayed with delay Fixed Sims not predicting future tasks as safe with current nudity level Fixed underage Sims not reacting to sex or nudity Fixed NPC Sims not being able to enter gender restricted rooms Fixed possible math problems Removed 'Safe Save' option 2.2.3.107 Added sex autonomy trigger from romance related chatter Added question dialog when NPC Sim wants to ask for sex a player Sim Added notification after Sim got possibly pregnant Made pregnancy occur after 5-10 seconds (instead of 15-25 seconds) Made NPC Sims switch sex animations depending on the sex interaction duration (longer sex, longer animations) Made the 'Invite to Stay the Night' interaction allowed for multiple Sims at once Made exhibitionism autonomy less frequent Fixed some romance interactions missing on adult Sims Fixed sex autonomy not respecting the autonomy game setting 2.2.3.105 Added initial sex autonomy for NPC Sims Added sex autonomy level setting (Disabled, Low, Normal, High) Added a notification when NPC Sims start a sex interaction Added 'Stop That!' interaction for NPC Sims sex interaction Added support for Noir and Dark Sims penis models Made player Sims and Sims going to sex location ignore gender specific doors Made animations duration limited to 60 seconds (unless overridden) Improved relationship score system Made changes related to NPC exclusive relations Made NPC Sims count gender preference Made the 'Polyamorous' trait count towards relationship score Improved animations lookup cache Made sure animations can't stage into itself Fixed Sim situations detection not working Fixed Sims getting stuck on locked doors when reacting to sex Fixed Sims not reacting to sex interactions on windows 2.2.3.104 Added support for version 1.30.103.1210 Added Sims Statistics for sex, exhibitionism and other (global settings coming soon) Made sure cum moodlets will always update after cleaning Made exclusive NPC Sims sex interactions not allow for pregnancy (not yet) Made Sims not react to solo teasing sex interaction if the Sim in it is not undressed Fixed underwear randomization command not working Fixed some relationship tests not working 2.2.3.103 Added support for exclusive NPC sex interaction Added ability to start NPC sex interactions Unlocked with 'ww.manualnpcsex' command Added setting for NPC sex interaction duration (by default 3 minutes) NPC Sims will try to end the sex interaction after set time in settings or after climax if possible Made sex interaction animations not stage to climax if it's not available yet Made sex interaction animations progression allow climax Improved sex interaction animations progression Teasing -> Handjob/Footjob -> Oraljob Oraljob -> Vaginal/Anal/Climax Vaginal/Anal -> Oraljob/Vaginal/Anal/Climax Climax (if can progress after climax) -> Handjob/Oraljob/Vaginal/Anal Fixed Sims not always leaving after reacting to sex Fixed Sims fighting privacy rules when going to the sex location Installation - Really Easy! If you have previously installed mods for The Sims 4 then you should be familar with this process. If you're using the Windows Installer version then skip this instruction. Make sure to remove WickedWhims files before using the installer if you had the mod installed manually before. 1. Open the downloaded mod archive file with an archive manager. Example archive managers: Windows - WinRAR / 7-Zip Linux - p7zip Mac - Keka 2. Open the folder for The Sims 4 Mods (Documents\Electronic Arts\The Sims 4\Mods). 3. Drag the 'WickedWhimsMod' folder from the archive manager to opened The Sims 4 Mods folder. <ANIMATION> 4. Turn the game on and open 'Game Options'. <IMAGE> 5. Open the 'Other' section and check the 'Enable Custom Content and Mods' and the 'Script Mods Allowed' settings. <IMAGE> 6. Turn the game off and on again. If you're missing the 'Resource.cfg' file in the Mods folder or you suspect it's invalid - remove it, turn the game on and turn the game off, it should be there again.Make sure you have not placed the mod files into too many folders. If the files are too deep into folders the game will not be able to find the files. <IMAGE> Installation of sex animations is exactly the same. Download the animation package, extract it with an archive manager and put the 'PACKAGE' file to The Sims 4 Mods folder. Download - Really Fast! Use Download Section on LoversLab or Download on my blog. Required Mods - You Need This! Sex animations available below are required for more sex positions! No additional mods are required to use all available functionalities of WickedWhims! WickedWhims doesn't provide full anatomy skins for Sims, you can find these in Optional Mods section or anywhere on the internet. Optional Mods - You May Need This! Below you will find additional mods that are completely optional. > Hiroki Better Body Mod - http://www.loverslab.com/files/file/3682-sims-4-better-body/ > Untraditional Nerd Detailed Feet (non-replacement) - http://untraditionalnerd.tumblr.com/Feet > Female/Male Skin Replacement & 3D nipples by Luumia - http://luumiasims.com/post/152404590469/body-redux3-new-body-replacements-to-improve-your > Female/Male Skin Replacement by Cmar - http://cmarnyc.blogspot.com/2014/09/sims-4-default-replacement-adult-skins.html > Azmodan22 Female Strapon Mod - http://www.loverslab.com/topic/70340-azmodan22-female-strapon-collection-updated-09122016/ > Noir and Dark Sims Penis Models - http://www.loverslab.com/topic/79046-sims-4-pornstar-cock-set-for-adult-males-and-wickedwhims/ > LunarEclipse Penis Models - http://www.loverslab.com/topic/69770-sims-4-lunar-eclipse-new-hd-hardpenis-model-casver-wickedwhims-compatible/ > Untraditional Nerd Soft Penis Model (non-replacement) - http://untraditionalnerd.tumblr.com/post/138432671920/download-detailed-bottom-aka-penis-mod > Azmodan22 Bondage Devices Mod - http://www.loverslab.com/files/file/3527-bondage-devices/ > YrSa BDSM Devices Mod - http://www.loverslab.com/files/file/4070-sims4-yrsa-bdsm-devices/ Animations - Required for sex This is the list of available animations for WickedWhims (if you find more or created more, tell me). To use sex interactions you need sex animations. Few are built-in to the mod, but you should check these out: Amra72 Animations Mike24 Animations Omaster Animations Lupobianco Animations Zorak Animations Anarcis Animations Azmodan22 Animations Redabyss Animations MinorLaser Animations Anonny Animations Slimreaper23 Animations Dagger Animations R-Lo Animations AOS Animations YrSa Animations OTE Animations PeachyPie Animations wild_guy Animations Bioaddict Animations Vivid369 Animations KLM Animations Eksclusiv Animations MeowHeaven Animations Shiro Animations MaryJane Animations jmem0 Animations Leksana Animations sames99113 Animations INKkan Animations Luxure Animations Golden88 Animations ooOLaLa Animations Desireee Animations Slash Animations Diba Animations Rodriguez Animations Translations - Do you understand? Translations are made by glorious members of the community. dardev French Translation TheSoulrester German Translation Isolina Italian Translation wild_guy Russian Translation Vampiressa Spanish Translation RealAFA Portuguese Translation lrdpaul Chinese Traditional Translation blobby666 Dutch Translation Support - Really Hungry! If you like my project, have money and you're willing to support me - then please do it. Without support, eventually, the project cannot be continued. Patreon: patreon.com/wickedwoohoo - You can use PayPal too! Tutorials - If you feel creative This is the list of tutorials I've made for creating animations for WickedWhims step-by-step. If you're interested in creating animations for Sims 4 then check them out! If you have problems with creating animations or understanding the tutorials - send me a private message. Creating Basic Animations in Blender (Redabyss Tutorial) Converting Blender Animations to Clips Creating WickedWhims Animations Package Creating WickedWhims Animation XML File Exporting Objects from Sims 4 Adding Events to Animations Do you have a problem? Go ahead and check the WickedWhims Help Center. If you want to report a bug then post about it over here. Errors, issues, crashes and other should go through the WickedWhims Help Center. Credits - Important People Thank you to... CmarNYC for soft penis mesh (http://www.sexysims.info/download.php?t=174682) CmarNYC and biondosim for hard penis mesh (http://sexysims.info/download.php?t=175352) ZoahcX for improvement of hard penis mesh Kirirhyn for modification of soft and hard penis mesh to fit for female Sims Luumia for logo, condom object and cum textures (http://luumiasims.com/) derover for exhibitionism icon Redabyss for adding sounds to my animations Peter Jones, ChaosMageX, andrewtavera, granthes, snaitf, IngeJones, Kuree, pboxx, CmarNYC and Buzzler for S4PE (https://github.com/s4ptacle/Sims4Tools) andrew and orangemittens for Sims4Studio (http://sims4studio.com/) Deaderpool for DP STBL (http://modthesims.info/m/8435027) Fogity for ModdingToolbox (http://modthesims.info/showpost.php?p=4732780) velocitygrass for Sims4Data (http://modthesims.info/t/531876) scumbumbo for TS4 Tuning Description Browser (http://modthesims.info/t/555233) and XML Extractor for The Sims 4 (http://modthesims.info/d/563256) CmarNYC for TS4 Package Searcher (http://modthesims.info/d/573139) mgomez for Sims 4 Python File Decompiler Automation Script (http://modthesims.info/t/540664) The community for help, suggestions and support Blender Foundation for Blender, JetBrains for PyCharm and Maxis for The Sims 4 Do you have any questions? If you're not sure about something, want to know something about me or the project or just want to say something nice (or not) - feel free to a post here or write a private message to me! Screenshots & Videos Darkening Demise 1.pngEksclusiv 1.pngjmem0 1.pngjmem0 2.pngjmem0 3.pngjmem0 4.pngJoeLewis 1.pngJoeLewis 2.pngJoeLewis 3.pngJoeLewis 4.pngMaryJane 1.pngMerlinaXX 1.pngmungo10 1.pngSer_ArthurDayne 1.pngSlick Clyde 1.pngSlick Clyde 2.pngspenndragin 1.pngspenndragin 2.pngspenndragin 3.pngThe Afro Samurai 1.pngthewatcher1 1.pngthewatcher1 2.pngtoby5124 1.pngTURBODRIVER 1.pngWarren Zevon 1.pngWarren Zevon 2.pngEctoplasma 1.pngEctoplasma 2.pngGokcenC.pngThePauly87.pngTurisas.png https://vimeo.com/217458441 https://vimeo.com/217801604 https://vimeo.com/218244595 everything has been working perfectly on the past updates, but I have a problem, I can't run, or well, the Sims 4 game won't find, load, or run the script, it on update v1.31.37.1220, is this just me, or is the game not updated for my version???
Ser Maggot Posted July 6, 2017 Posted July 6, 2017 Hello. Thanks for the mod and recently became a patron. Great job! I do have something that still eludes me. So I have a lesbian couple but I can't for the life of me make them use the (Amra's) strap-on automatically and use the M/F animation. When browsing the animation list, it gives me the default F/F animation. Is there a setting that I should change? I left my settings at default and haven't really fiddled with it. I'm using the latest patreon update and of course, the latest Sims 4 update. Any suggestions to how I can set it up would be appreciated.
Vampiressa Posted July 6, 2017 Posted July 6, 2017 Hello. Thanks for the mod and recently became a patron. Great job! I do have something that still eludes me. So I have a lesbian couple but I can't for the life of me make them use the (Amra's) strap-on automatically and use the M/F animation. When browsing the animation list, it gives me the default F/F animation. Is there a setting that I should change? I left my settings at default and haven't really fiddled with it. I'm using the latest patreon update and of course, the latest Sims 4 update. Any suggestions to how I can set it up would be appreciated. There's an option under sex settings that lets you enable the animations for other genders than the ones they're made for. It's disabled by default, that's why it isn't working for you. Always check the settings and read the descriptions carefully, there could be more things that you'd want to change.
no.1froggie Posted July 6, 2017 Posted July 6, 2017 [*]Made Sims in relationships only pair with their partners for Sex Autonomy on Low and Normal Level Settings (Polyamorous trait excludes this rule) Just wondering, -Don't have patreon- but does this mean sims can no longer cheat sexually? I myself don't use polygamous relationships but like to be able to have cheating sims. Thank you
Recommended Posts
Posted by DoctaSax,
leaving this pinned until update
Recommended by DoctaSax
Reputation Points
Go to this post
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 accountSign in
Already have an account? Sign in here.
Sign In Now