Home Artists Posts Import Register

Content

Happy New Year! Or at least I hope so. December as always was a hectic month of holidays and events, but that didn't stop me from having some fun figuring out new stuff.

One of the biggest reoccurring issues is the awful stability of save data, resetting Body Selector is definitely pretty annoying, so an overhaul of the save system was required. I took a completely different approach than ever before and tried to incorporate as much information into the game save structure, rather than saving it separately.

Incorporating save data into the game save structure requires you to create instances of data that the existing structure can process. The saving system of the game is quite limited, preventing you from injecting any meaningful modifications, but that's probably for better, you wouldn't want to corrupt saves by accident. These limitations require to create dozens and dozens of container files that can contain pieces of data you want to save. And creating these files is a huge pain, taking very long, and limiting you with what kind of data you can save anyway.

To be able to switch to this approach I had to figure out an efficient way of creating plenty of different kinds of container files, and doing it fast. I spent a few days creating new tools for quick generation of these files with exactly the data I want. This is amazing progress since any future development will speed up the process of creating these sort of files, and prevent me feeling dead inside from spending a whole day just copying and pasting and editing the same file over and over again.

Unfortunately, there is still some complex data I will never be able to save within the game save structure. So I have to keep using the separate save system for some things, and even though I overhauled that system as well, it's hard to tell if it will stable for every user.

Reporting Exceptions | Help Center

  

4.3.5.139.16

  • Made Cuck Sims masturbate from watching sex even without reacting
  • Made flirty reaction to sex prioritized over excited reaction to sex
  • Fixed preferred gender not being respected on actor assigning


4.3.5.139.15

  • Fixed issues with initiating sex when ignoring occult genders


4.3.5.139.14

  • Added 'ww.set_sim_statistic <statistic_name> <value>' command
Typing in the command without any arguments will display you the list of all statistic names.
  • Fixed occult genders handling
  • Fixed Sims trying to masturbate while carrying objects
  • Fixed hospital staff on duty participating in sex autonomy
  • Improved base game compatibility 


4.3.5.139.13

  • Fixed nudity skill influence not working
  • Made birth control pills last longer
  • Fixed Sims getting filthy clothes on public venues


4.3.5.139.12

  • Fixed loading the game with Sims missing interactions
  • Improved scratch save files consistency


4.3.5.139.11

  • Improved Body Selector consistency
  • Fixed Sims mood tests not working
  • Fixed 'Perfect Birth Control Mode' not affecting Early Birth Control moodlet
  • Fixed randomization of underwear not working
  • Fixed CAS Parts Handler not loading sets of parts


4.3.5.139.10

  • Fixed sex interactions missing on objects
If you have issues with sex interactions missing on objects or the floor after sex, this should solve your problems.
  • Fixed Random Interaction Undressing causing errors
  • Fixed issues with applying of cum layers
  • Fixed Sims in bathing outfits causing errors during club meetings
  • Fixed 'Disable/Enable for Sex Autonomy' interactions missing
  • Fixed more text formatting issues


4.3.5.139.9

  • Fixed text formatting on the fertility treatment interaction
  • Fixed errors when 'Get Together' expansion is not present


4.3.5.139.8

  • Updated 'ww.fix' command
  • Fixed 'Anything Goes' gender setting causing animations to go missing
  • Fixed some variable state inconsistency


4.3.5.139.7

  • Fixed errors when using condoms


4.3.5.139.6

  • Made pregnancy moodlets always age unlocked
  • Made Sims avoid autonomy sex 8 hours before labor
Instead of Sims avoiding sex during the third trimester, they will avoid sex a few hours before labor will occur. This time can be longer depending on the sex duration setting.
  • Fixed Sims not being able to get pregnant after resetting potential pregnancy via commands
  • Reverted advanced mods duplication checks


4.3.5.139.5

  • Made full reactions to nudity more delayed
  • Made NPC Sims use every color of condoms
  • Fixed NPC Sims not using condoms
  • Fixed brave Sims undressing out of context
  • Fixed Sims in nudity clubs not undressing
  • Fixed Sims always being considered as flashing
  • Fixed disabling animations not refreshing query data


4.3.5.139.4

  • Fixed compatibility with MacOS
  • Fixed cum layers disappearing from NPC Sims after few seconds


4.3.5.139.3

  • Added WickedWhims duplicated installation warning
  • Fixed Sims becoming naked after loading
  • Fixed watching porn on computer causing errors


4.3.5.139.2

  • Fixed all statistics incrementing on travel
To reset the statistics, use the 'ww.reset_sim_statistics' command.
  • Fixed club outfits not staying on after undressing
  • Fixed changing into towel not working
  • Fixed 'WickedWhims has been installed!' notification behavior


4.3.5.139.1

  • Fixed errors when user has duplicated mods installed


Save System

  • Reworked special save handler
The dedicated save data system has been reworked to improve its clarity and hopefully stability. All of your current save data should be compatible and automatically convert to the new save system. With that, the version of your save is kept so any future changes will allow preserving most of your data without the need to reset it.
  • Integrated some of Sims data to game save structure
As explained at the beginning, a portion of the save system has been integrated into the game save structure, allowing the game to handle some of the data. That required introducing a separate system of data identification, which is kept in the "cas_parts_keeper_data.ww" file, and it is flexible enough to deal with any kind of information if needed.
It's the best to never remove the "cas_parts_keeper_data.ww" file as it holds all of your identification data, which in some cases can be unique to your game. Ideally, it will regenerate with consistent identifiers, but that can't be guaranteed with the limitations imposed by the game data protocols handling.
The focus of this integration was to keep as much sensitive data as possible directly in the related containers, which these containers are Sims themselves. This means that the data related to Sims is directly kept with the Sims, as it should be, and only fiddling with Sims can cause them to lose it.


General

  • Added events logging
A mostly user-friendly logging system has been introduced, that logs WickedWhims actions, mainly invisible actions, occurring in your game, and saves them to a file. This is just the initial implementation, so the majority of actions are not logged yet, but this should be useful when figuring out what is happening to solve issues.
The beginning of the file shows mod files that are present in your Mods folder, as well as possible name duplicates. Just so you know, the "Possible Duplicated Mod Files" line should be showing a zero.
The logging file is located directly in the '\Documents\The Sims 4' folder, under the name "WickedWhims.log" and it gets automatically deleted each time you start the game. If it ends up getting too big, it will delete itself automatically to preserve disk space, but it never should get too big anyway.


Statistics

  • Reworked Sim Statistics to use the base game statistics system
New tools for generating files allowed me to efficiently rework the statistics system to be based on the in-game statistics system. The should be more consistent and stable, as well as persist on the Sim no matter what.
Big thanks to the SimGuruTwoLegs who helped me figure out the odd quirks about the inner works of the statistics list. There are some unfortunate limitations present with the use of this statistics system, but I think it's way better than what was available before.
If you don't know how to access Sim statistics, open the "Simology" panel and click on the round button that shows the bar graph icon.


Body Selector

  • Improved Body Selector parts identification
As explained in the "Save System" section, the Body Selector now comes with a new identification system that is dependent on the "cas_parts_keeper_data.ww" file located in the "saves" folder. It's possible that not all of the data will be properly converted to the new system so some selections might get reset.


Sex General

  • Added 'Enable/Disable Undressing in Sex' cheat
Disabling Undressing in Sex will prevent the Sim from undressing during sex, separate from the "Sex Undressing Type" setting. If you have a Sim with a special outfit that you want to keep during sex, this is the cheat you want to use.
The 'Enable/Disable Undressing in Sex' cheat interaction is available on every Sim when Shift+Clicking on them while 'testingcheats' are enabled.
  • Fixed Sims not being able to start sex on object they are currently occupying
  • Fixed 'Sex Reactions' cheat not saving


Sex Autonomy

  • Made 'NPC Sims Relationship Modifier' setting have no bottom limit (again)
  • Made Sims declined sex wait 'Random Sex Cooldown Time' before asking again
  • Fixed 'Club Sex Cooldown Time' not working properly checked


Sex Animations

  • Added 'Disable Currently Playing Animation' cheat interaction
If you ever had Sims perform a sex animation that you don't like, you would need to open the Wicked Setting, go to the Sex Settings, open the Animations Disabler, look for the animation creator, the sex category, and then finally you might find the animation you want to disable. It sure is a pain to do, but not anymore.
The 'Disable Currently Play Animation' cheat interaction is available on every Sim that is in sex when Shift+Clicking on them while 'testingcheats' are enabled.
  • Added support for occult specific animations
  • Added 'Ignore Occult Genders Restrictions' setting to Gender Settings
Animators can now specify if animations are made just for vampires, aliens, or ghosts. This will allow to clean up the list of animations from the odd ones and avoid human Sims giving the "ghost blowjob" all the time.
  • Made loading of animations a little more forgiving
Some animations that were incorrectly configured would end up being ignored when loading. Improvements to the animations loading give them a second chance and attempt to make them functional again. Hopefully, it's worth it.
  • Fixed injection of animations interactions


Sex Cum

  • Made Sims not fully react to cum on a Sim after already reacting to it
Sims constantly reacting to cum on someone's face can get pretty stupid. Now Sims will fully react to seeing cum on a Sim only once, and fallback to reacting as a thought bubble to avoid being interrupted when performing other tasks.


Sex Cuckold

  • Fixed cuckold Sims not watching sex after reacting


Nudity General

  • Added 'Auto Reset Bathing Outfits' outfit setting
If you modify the Sim bathing outfit, WickedWhims would always end up resetting it to make sure it's consistently displaying Sim nudity. That is not ideal if you intend to have the Sim "wear" some special parts that should never be removed. By disabling the "Auto Reset Bathing Outfits" setting, the bathing outfit will never be reset by the mod.
  • Fixed Sims not undressing for interactions
With the past release, Sims performing certain interactions would dress to the Everyday outfit instead of getting naked or using the appropriate outfit. This should not be an issue anymore.
  • Improved handling of appearance modifiers
Appearance Modifiers were always a huge pain to deal with. They are used to dynamically modify Sims outfit or body appearance and were constantly breaking when undressing. With this release, I'm pretty confident to say that they should work perfectly... until I break them again somehow.
  • Fixed Sims not staying naked from the previous game save
  • Fixed 'Nudity Reactions' cheat not saving


Nudity Social

  • Fixed asking Sims to undress not working
  • Fixed asking Sims to undress not working with the 'Respect Underwear' setting


Nudity Underwear

  • Fixed not being able to apply feminine underwear on male Sims


Relationships

  • Added 'Desire Switch' setting
Took me a while to add this, but if you're one that hates the desire moodlets, this setting will disable them.


Other

  • Improved security of tuning injects and overrides
Each game patch has the potential to break dynamic tuning injections, which often result in a chain reaction of the save loading system breaking and overall everything exploding. With this release, all of the injections are secured and when they break, all you will get is a log message about it occurring.
  • Fixed gameplay freeze on closing Build/Buy without changing anything
The lot structure system used in WickedWhims to optimize autonomy collects a lot of information about the currently loaded lot to have a quick and easy access to any information. Collecting this information can take a few seconds with bigger lots, which can get super annoying when you constantly open and close Build/Buy for small adjustments.
Collecting this data is now ignored when no objects were added/removed and no walls were modified.


 

Known Bugs

  • Undressing during a club meeting with custom outfits will blink the original outfit for a split second
  • Missing the acting career audition while in sex will cause the audition to get stuck forever in the career tab


Reporting Exceptions | Help Center

Reporting Exceptions | Help Center

Reporting Exceptions | Help Center

Please don't use the Community Tab to contact me or report issues.

Files

Comments

Marvin

I really love this mod and how Master Turbo stomps on those bugs and actively seeks to find them! It is so well integrated into the game. Other sex mods (like for Sims 3) leave a carnage of broken gameplay in their path, as if the game didn't matter and all they used it for was to watch animations.

Anonymous

Happy New Year Turbo and thanks for all your hard work so far! I hope it's a Wicked 2019 for you and your lady xxx

Anonymous

Happy Holidays and much success in 2019!!

Anonymous

Disable Currently Playing Animation was on my wishlist! Happy New Year to you and happy birthday to me! xxx

Anonymous

Sounds like some amazing new and updated stuff! Thanks!

Anonymous

having a few issues. try saving and opening again, keeping getting a warning box and after that everything freezes. i did go through mods folder found no duplicates and everything is in its rite place im using the last patch and the game is running fine.

Anonymous

okaaaay.. in this update whenever i click on character or object i get a lot of lastexceptions, and there are no ww interactions. only options and exhibitionism. but when i click on options or exhibitionism my sim just resets and nothing happens

Anonymous

I am also having some issues. WickedWhims was working fine, was playing the game before installing this latest update, re loaded my game and straight away at startup a lastexceptions txt box appears! I have been through my mods folders and made sure everything is up to date and not broken and all is as it should be, however the wicked whims is no longer working! :(

wickedwoohoo

Hey! Go ahead and send the error file. Exception files are located in The Sims 4 Documents folder (\Documents\Electronic Arts\The Sims 4). The best option is to upload the content of an exception file by using a text sharing hosting, like Pastebin ( <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> ). To use Pastebin, open the exception file using any notepad application, copy its contents, paste them to the site and create a new paste. Then copy the address of the website you’re at after creating a paste and include it in your post/comment. If the error file is too big, send only the bottom half of the file instead.

wickedwoohoo

Hey! Go ahead and send the error file. Exception files are located in The Sims 4 Documents folder (\Documents\Electronic Arts\The Sims 4). The best option is to upload the content of an exception file by using a text sharing hosting, like Pastebin ( <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> ). To use Pastebin, open the exception file using any notepad application, copy its contents, paste them to the site and create a new paste. Then copy the address of the website you’re at after creating a paste and include it in your post/comment. If the error file is too big, send only the bottom half of the file instead.

wickedwoohoo

Hey! Go ahead and send the error file. Exception files are located in The Sims 4 Documents folder (\Documents\Electronic Arts\The Sims 4). The best option is to upload the content of an exception file by using a text sharing hosting, like Pastebin ( <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> ). To use Pastebin, open the exception file using any notepad application, copy its contents, paste them to the site and create a new paste. Then copy the address of the website you’re at after creating a paste and include it in your post/comment. If the error file is too big, send only the bottom half of the file instead.

Plumpkin Pumpkin

As soon as I downloaded this patch, I get tonnes of errors whenever I click on anything. Sticking with the previous patch for now.

Anonymous

Hello, here I just put this version and barely in my game full of orange window that has just appeared and it continues unceasingly. Here is the link of last exception hoping to have done well! <a href="https://pastebin.com/E4YYrJxN" rel="nofollow noopener" target="_blank">https://pastebin.com/E4YYrJxN</a>

Anonymous

I got a LE too but mine appears to be pointing to Nisa's mod so I'll wait on an update from her.

wickedwoohoo

Hey! Please download 4.3.5.139.1, the error was caused because you have multiple mods with the same exact name. Updated version should not error from that.

wickedwoohoo

Hey! Please download 4.3.5.139.1, there were errors caused by having multiple mods with the same exact name. Updated version should not error from that. And if you use Nisa K mod, make sure you will update that when possible.

wickedwoohoo

Hey! Yes, Nisa K will break from this update, but she should be prepared to put something out soon enough.

dmaster1968

say did you just fix it because it's causing the same orange windows - your new version?

wickedwoohoo

Hey! If you're getting any errors, make sure you're on version 4.3.5.139.1, and if you're using Nisa K mod, please wait for it get updated. Otherwise, go ahead and send the error file. Exception files are located in The Sims 4 Documents folder (\Documents\Electronic Arts\The Sims 4). The best option is to upload the content of an exception file by using a text sharing hosting, like Pastebin ( <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> ). To use Pastebin, open the exception file using any notepad application, copy its contents, paste them to the site and create a new paste. Then copy the address of the website you’re at after creating a paste and include it in your post/comment. If the error file is too big, send only the bottom half of the file instead.

Anonymous

happy new year turbo. also thanks for the disable current animation option, I really need that, so far I always saw an animation that I don't like and thought: I'll disable that later but I never did. So now that I can disable them in an instant I can finally get rid of those animations

K

Happy New Year!

Alain

Hello Bonne année et bonne santé pour 2019 Bye

Anonymous

I continue to find my Sim naked at every move that does ... I checked all the settings, but it's all right. And every word appears to me that the turbodriver is active.

Megaira

Happy New Year! I hope you had a wonderful holiday season :)

Martin VG

The new saving overhaul is a terrific idea. Thanks a lot for this great update.

Anonymous

Don't forget us mac users

Anonymous

haven't played that much yet but I found a bug that if I choose to change into towel or if my sim is for whatever reason supposed to wear a towel, that sim spins like it changes into a towel and it's like the sim is wearing an towel but is wearing the outfit that the sim has worn before changing into towel

Anonymous

Has anyone had issues with the gender settings? I play on multiple saves and on a couple I keep things 100% hetero and unless I check anything goes I lose the option for any Woohoo actions in WW.

Tlove

Hi Turbo, I tried posting in the discord, but no one responded. Since the update, I have random sims walking around naked. I was at the gym and few sims were just plain ol' nude. Not sure why this is happening. Also my controllable sims, won't get naked. I can undress their tops and bottoms individually, but I can't undress them completely. They'll spin around like they are undressing but nothing happens. They do get naked for the shower and for the suana but not during sex interactions. Also I had a few NPC sims that had this ghost like penis thing happening to them while on a get famous lot, not sure what that was about either. Please advise when you can.

Anonymous

Hi Turbo. I just updated to this version and every time a loading screen happens I get a new WW notification about the version I'm running. I used to only get that notification when the game initially started. I have to keep deleting it. I don't see a way to stop the notifications from happening.

Anonymous

Regarding the stability of saved data. I've found, at least before this update, that all my saved data was pretty solid until I started moving sims around the worlds. I could be totally off. It just seemed that if I was going to lose all my custom underwear choices etc, it would be after moving a few sims around. Just throwing it out there. Cheers

knuti

Happy new year turboo! love you! &lt;3

Anonymous

HNY! Is it likely that 2019 will bring different "levels" of sex? I saw a good suggestion on the WW forum

Brian Zaenglein

I got an exception notice shortly after loading after updating, but I don't seem to have a new exception file. Unless the path is different now?

Brian Zaenglein

Also I don't see it in the changelog, but a glitch I was seeing seems to be gone now. A sim would finish using the toilet, put their pants back on, but would take everything else off. A friend of mine using the current LL version says he has the same thing happening. I had noticed my sims were topless a lot, but only noticed why on Tuesday, then this new update came out anyway. I made my sim drink until she peed autonomously, and she dressed properly afterward.

TL-Hero

I have the towel wearing mod - must be obsolete. My sims come out naked now causing naked-based reactions from others.

TL-Hero

thank you for the update. Happy New Year. Either my game/update has an issue, you removed it, or it's moved to another area: I used to SHIFT-CLICK on a sim - WICKED WHIMS category, see Pregnancy Info - to learn when they are ovulating, etc. I no longer have those options.

Brian Zaenglein

"Me too" on arriving naked whenever I travel. Also there seems to be a buggy spot in Club Calico, the lounge in Brindleton Bay. NPC's are picking a spot just outside some double doors, a LOT, apparently thinking it's relatively private (it isn't, at all). Then the female breaks off early, walking around naked afterwards, and the male is stuck still acting out his part of the animation.

wickedwoohoo

Hey! What about Mac users? There's no difference when making mods for Windows or MacOS.

Anonymous

Thanks for the new release :). While I've not encountered critical bugs there are a few issues for me: (1) If I change the lot my sims will arrive naked (2) On a new lot I get a notification that the mod was succesfully installed (small green text box) (3) The new statistics system goes mad. Everytime the green "succesfully installed" box appears it seems that the statistics for my sim a newly calculated - currently my sim has done everything at least 34 times (seems to be the current 0 value). Is it somehow possible to still access non-played sim-statistics like it was possible with the old system?

wickedwoohoo

Hey! You mean the purple notification? Doesn't seem to be happening to me. Make sure you don't have WW installed twice. EDIT: I think I know what you mean now, it's green not purple.

wickedwoohoo

Hey! Moving Sims or not, things like settings would reset, which shouldn't be dependent on that in any way. It's just the quirks of the game save system, I guess I don't know every detail about it yet.

wickedwoohoo

Hey! lastException.txt and WickedWhims_Exception.txt? Sounds pretty weird, but if you don't have it, we can't do anything with it anyway.

wickedwoohoo

There's plenty of things that got changed related to outfits, so it's hard to tell what is the cause of these oddities, but the goal is to move closer and closer to the sweet spot where every case of Sims outfits is handled perfectly. Something I keep working on since the beginning.

wickedwoohoo

Hey! 1. Is the Sim naked before traveling? If so, that's the norm now. 2. I should have that fixed soon, thanks. 3. Yup, somehow I haven't noticed that before, it increments every time you travel in general. No, the change to the in-game statistics approach doesn't let you display this list for any other Sim, which is quite unfortunate and an obvious downgrade. I'm not sure how to deal with that situation yet.

wickedwoohoo

Hey! Perhaps you're talking about the "Random Interaction Undressing Autonomy" function. You can disable it in "Occurrence Specifics".

wickedwoohoo

Hey! So what do you exactly mean by 100% hetero? Are there certain settings I should change or should they be kept as default? I would need to know how to do this to test it.

wickedwoohoo

Hey! If you have Sims that have some nudity skills, they will undress to some interactions. You can disable that in Occurrence Specifics, setting named "Random Interaction Undressing Autonomy". For issues with undressing, could you try the 4.3.5.139.2 release? There isn't exactly anything I encountered that is wrong, so unless I can get more information about your settings and if this happens on every save, I can't do much. If you altered any outfit related settings, then things might break.

wickedwoohoo

Were Sims traveling naked in the first place or did they get naked after traveling? A Sim breaking the sex interaction does occur sometimes, but it's not something that happens consistently nor has any clear reason to happen, so I can't exactly test it to figure out why. You do have to reset the Sim in a case like that.

Anonymous

Happy New Year Turbo! I've downloaded the recent version but do not have the WW option on any objects. Any ideas what I'm doing wrong?

wickedwoohoo

Hey! Are you sure you're running the most recent version? Does that purple notification state 4.3.5.139.2? It's important because this version did fix an issue with injection of sex interactions. Otherwise, did you change any gender related settings?

Stephen Blake

Hello there, just updated to version 4.3.5.139.2 and I've noticed that one of my sims is definitely not keeping her clothes on during a save! I've tested it 6 times now. I make her put on an outfit. I save and come out of the game. When I go back she is naked. She's in a household of 6 and all the other sims are fine. I've tried to cancelling all her buffs before saving in case they were causing an issue but the same thing happens each time. She starts the game naked. It's funny - but it would be great if she could stay dressed until I tell her to undress!

Anonymous

Hi ! I have the same issue than Alex, my sims can't even do normal maxis sex, I'm running with the latest version as well.

feellessguy

hello there it seems like my wickedwhims cannot find any animations at all and keep giving me error, I fixed it by deleted the CNWW mod, it fix the problem, so I wonder if there is problem about wickedwhims or CNWW or I did something wrong, I put them all under the mod folders and there were all up to dated. please tell me if there is anything I can do to fix it, thank you!

Anonymous

ok towel is now visible but I got an new bug that everytime I travel between lots my sim is wearing the towel as he arrives same for when I load my save

wickedwoohoo

Hey! I can't help you with cnww being broken, it's not my mod, please contact the mod creator.

wickedwoohoo

Hey! Please try the 4.3.5.139.3 version, if you see a warning notification about a "FATAL ERROR", then that would explain the issues you're having.

True AI

The link above is still the 139.2 release. How do we get the new one?

Barry Wilson

Hi Is link still working. I have IDM and it says file does not exist. But probably my faultnthanks

wickedwoohoo

Hey! There was an issue with the uploaded version after the 139.3 release, but it should be fine now.

Anonymous

Thank you, Turbo.

Anonymous

Hi, last two releases am getting last exception errors. Also WW isn't working at all. By that objects such as beds, couches etc no longer have the option for WW. Objects that do have WW such as floor, when selected only shows settings. Click settings and nothing happens.

Anonymous

Hi! Love your mod so much you, such an amazing job! However, since the last update your mod hasn't work in my sims :( I've checked everything. I even went to <a href="http://lastexception.com" rel="nofollow noopener" target="_blank">http://lastexception.com</a> because new last exception files were being created every time I started the game, and they always say is because I have an outdated version of your mod, but I just tested this one and the problems continues. Please help!

Vera

Hi Turbo! Thanks for the update. See. I keep getting the orange message about duplicated ww files, though I've deleted and reinstalled it all over. How could I fix it?

Anonymous

NPC automatic birth control not working anymore. And I have NPC Safe mode checked. Don't know what could be wrong.

Anonymous

Happy New Year TD In the latest version Cum Layer get removed waaaaaaay too fast on NPCs. They last like 2-3 seconds.

wickedwoohoo

Hey! Go ahead and send the error file. Exception files are located in The Sims 4 Documents folder (\Documents\Electronic Arts\The Sims 4). The best option is to upload the content of an exception file by using a text sharing hosting, like Pastebin ( <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> ). To use Pastebin, open the exception file using any notepad application, copy its contents, paste them to the site and create a new paste. Then copy the address of the website you’re at after creating a paste and include it in your post/comment. If the error file is too big, send only the bottom half of the file instead.

wickedwoohoo

Hey! Go ahead and send the error file. Exception files are located in The Sims 4 Documents folder (\Documents\Electronic Arts\The Sims 4). The best option is to upload the content of an exception file by using a text sharing hosting, like Pastebin ( <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> ). To use Pastebin, open the exception file using any notepad application, copy its contents, paste them to the site and create a new paste. Then copy the address of the website you’re at after creating a paste and include it in your post/comment. If the error file is too big, send only the bottom half of the file instead.

wickedwoohoo

Hey! That means you have multiple installations of WickedWhims in your Mods folder. If "TURBODRIVER_WickedWhims_Tuning.package" or "TURBODRIVER_WickedWhims_Scripts.ts4script" exist twice, you will get that error. Please check your 'Mods' folder.

Metko

Happy New year, i dont know if this was asked before, but will you change the Sex type ( Handjob, anal, Vagina etc. selection to only show the available types of animation? I mean it will always tell me " no animation found " but is it possible to see them only if you have them on the location?

DeliaDeetz

I like this idea. So only have the WW menu pop up if WW is actually available to use? Yea, that would be SUPER useful!

DeliaDeetz

I'm having a bit of an issue with strap-ons and animation disabling. Neither are working correctly. No matter what I do, I cannot get my female sims to equip a strap-on, where that previously worked just fine. As with the animation disabling, it's simply not working for me. It isn't saving my choices and I am seeing the animations being played that I have disabled.

wickedwoohoo

Hey! I can assure you that the system itself functions correctly, but it seems like NPC Sims sometimes reject to receive condoms that then they later on use. I will look into this issue soon.

Anonymous

I have a concern/question with installing the new update. Will removing the WW mod after using it with the new save system corrupt those saves; whereas before the traits and associated things would just be deleted and you could continue playing on that save?

wickedwoohoo

Hey! Have you tried changing the strapon on the Sim to see if that would fix it? How do you tell that your choices are not being saved? What is the process you go thought to tell?

wickedwoohoo

Hey! Removing any mod should never cause problems because the game simply filters these elements out and lets the game play as normal. Nothing has changed in that matter.

Anonymous

As of ver 4.3.5.139.3 there is an issue during sex, if I try to remove complete outfit it will cause the sex animation to reset, a warning in the corner about an issue with the sex animation and the clothing will remain on. If I use remove top, remove bottom or remove outfit, they seem to work fine.

wickedwoohoo

Hey! Can't seem to reproduce it. If you can figure out any specific details about the Sims that have this happen, that would help a lot. Perhaps it's related to your outfit settings.

Anonymous

What was wrong with WW and MacOS? Asking because recently i've gotten a series of crashes that happen when the game loads the Household. I went through my CC extensively for a couple hours and couldn't find a problem with anything. The only recent CC I added was WW (This was yesterday so it was yesterday's version). I ended up doing a folder refresh and it seemed to solve the problem but I haven't tried any of today's WW versions to make sure.

Anonymous

I keep updating and I seem to be getting this last exception still. I try to read through them and see if I can pick up anything it says, but this one doesn't see so clear. Here's a link to the pastebin with the exception in it, does that help? Sorry, I'm a bit new to this and reporting last exceptions. Other than that, I love love LOVE this mod! <a href="https://pastebin.com/GRu0Lfij" rel="nofollow noopener" target="_blank">https://pastebin.com/GRu0Lfij</a>

Anonymous

Not sure if it is a fluke or a bug, but two sims in my household came back from work/school right away when I upgraded to the latest version of WW and loaded my game. They had 3 hours left before the end of their 'shift'.

Anonymous

You are awesome! Thank you for the update!

Brian Zaenglein

So you saved while they were away? It happens, I've seen it quite a few times. Pretty sure it had nothing to do with updating, it just seems to happen sometimes when you load a save where some of the sims were out of the house.

Anonymous

I am not sure what the issue is but my female sims no longer have the Azmodan22 Strapon visible when having sex. It was showing prior to your update. Many thanks for such an entertaining mod.

Anonymous

Thank you for the awesome mod updates, loving your mod, I just installed it and I am slowly getting my way around LE files. I am not sure if this is a conflict with your mod or someone else, I have the most recent updates of all mods too. <a href="https://pastebin.com/ds4QuRX6" rel="nofollow noopener" target="_blank">https://pastebin.com/ds4QuRX6</a>

DeliaDeetz

This just happened to me too. You need to head over to LL and get the new update and everything will show back up.

Anonymous

Just wondering if anyone is experiencing the same issue i am. after the new update my game worked fine but since the most recent fixes my game now refuses to load, it gets stuck on the loading page before the main menu. I have gone through all my mods and CC and it seems to only be wicked whims that i'm having this issue with. Thank you for any comments

wickedwoohoo

Hey! If it doesn't load, it's very likely you're getting error files that might help figure this out. It would be great if you could send the most recent one. Exception files are located in The Sims 4 Documents folder (\Documents\Electronic Arts\The Sims 4). The best option is to upload the content of an exception file by using a text sharing hosting, like Pastebin ( <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> ). To use Pastebin, open the exception file using any notepad application, copy its contents, paste them to the site and create a new paste. Then copy the address of the website you’re at after creating a paste and include it in your post/comment. If the error file is too big, send only the bottom half of the file instead.

wickedwoohoo

Hey! The incompatibility introduced in 139.3 was related to the method of reading files on the binary level. Windows offers a very fast method of streaming in files, that MacOS doesn't, so I had to change the implementation to a slower solution. Nothing else that would depend on the OS was changed.

wickedwoohoo

Hey! This error is related to a Sim running the "Ask if single" (mixer_social_AskIfSingle_targeted_romance_alwaysOn) interaction. I would guess you might have some mod that overrides this interaction in an outdated way and causes issues. If this is something that doesn't occur every time, you can ignore it.

Anonymous

Hello, here I download the latest version of your mod. I come into play everything is fine, I make my settings, and there I click on the bed and I do not have the tab Wicked while before I had it. I also have lastexception files that are specially created for the WW. I'm putting the file in question <a href="https://pastebin.com/W96jQJBG" rel="nofollow noopener" target="_blank">https://pastebin.com/W96jQJBG</a> Thanks for your help !

Anonymous

Hello! So a little quirk I've noticed when I Shift + Click and use the Debug for "General sim Info" it makes the sims hair + eyebrows turn green, but then I plan outfits and it goes back to normal. I'm not sure if its just me or if this is happening to others too.

Anonymous

i made a new family and start play, but i need to update Wicked- i do that and fix my settings- have to reload game and get a message that Wicked needs to update again. But it is the same update i just made...?

Anonymous

Thanks!

wickedwoohoo

Hey! Well, you shouldn't be really using that interaction, but I don't really know why, I guess the magic of the game.

wickedwoohoo

Hey! The notification that displays about an update being available shows you the difference between version numbers. Are you sure they are the same?

Anonymous

Hello, I've just installed the latest update and it says everything was installed correctly, all the animations are there but when I go to try have my Sims use any of the interactions the only option I'm given is "Settings". No matter where I have them try, on the bed, on the floor, in the shower, nothing but the settings option shows up. Hope you can help.

Anonymous

Yes, I'm also having the same problem starting sex interactions with another Sim; I click on the floor, i get handjob or oraljob options even when the two are in close proximity. I click an object and I get settings only.

Anonymous

Please help, this LE keeps popping up <a href="https://pastebin.com/xga7SyWB" rel="nofollow noopener" target="_blank">https://pastebin.com/xga7SyWB</a>

wickedwoohoo

Hey! This looks like an issue introduced by the latest game patch related to the Sack Lunch. Not much you can do about it at this moment.

wickedwoohoo

Hey! Are you getting any error messages? Have you tried testing it on a new save game? Is it happening to every Sim? Have you tried using the 'ww.fix' command? The 4.3.5.139.6 release comes with a new command. The "ww.debug_sex" command will write some test info into the log file. You can try using it and then closing the game. In the '\Documents\The Sims 4' folder you will find the "WickedWhims.log" file. You can send here by using <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> and pasting the link if the file is not too big. Or you can send it to wickedwoohoo@gmail.com as an attachment. It might contain some information to help solve this.

Anonymous

I tried queuing sex interactions with three different couples and all I get is the settings option when I click on the floor, or exhibitionism and settings options when I click an object. I did ww.fix and nothing happened. Here's the ww.debug_sex log <a href="https://pastebin.com/tdANh2T2" rel="nofollow noopener" target="_blank">https://pastebin.com/tdANh2T2</a>

Megaira

I downloaded the newest update, and ever since every time I use a condom I get the message 'An issue with a running sex interaction has been detected! Attempting a reset of the active sex interaction...' and then the interaction resets and there are no more problems. Also I don't think the message occurs when npc's use condoms on their own. Update: I decided to see what happens with multiple partners as well and another weird thing occurs. So I have 2 male sims and 1 female sim, each male sim has 30 condoms on them and when I have either of them use their condoms it takes away 2 condoms from the stack and I get a message saying 'Not enough condoms to use for every partner' and then neither of the males are wearing a condom. They will however use condoms autonomously without any problems occurring.

Anonymous

Hey Turbo! I just got a new PC laptop (I was previously using a Mac and never had issues with the mod). Because of this, I've got a clean slate on my game, no corrupted save files or anything. I've just moved my mods folder over from my old computer and replaced the old WW files with this new version. However, I'm getting an error that the Tuning package file is corrupted and it will not allow me to launch the game. I don't see this anywhere on your website FAQ. What am I doing wrong? Thanks for all you do!

Anonymous

Whenever I go into CAS and remove my male sims' boxers they have a strange white "phantom" underwear shape around their bottoms. I'm not sure how I can fix this.

Anonymous

Whenever I have a selected Sim click on another Sim I get last exception errors. It's only when I click on a Sim not objects. I deleted all mods and reinstalled WickedWhims and I would get the same error about 2 times then it stopped (again with only Wicked installed). I saved, exited and started it back up, no errors. Now I installed MCC with Wicked and I get the same errors again. Wicked is version 4.3.5.139.6 and MCC is 6.0.1. Here are my WickedWhims log and LastException logs. I did notice that it said in the Wicked logs something about Noir condoms, but I don't have those installed, again I only have Wicked and MCC right now installed, trying to troubleshoot these first. <a href="https://pastebin.com/F0JmUd4v" rel="nofollow noopener" target="_blank">https://pastebin.com/F0JmUd4v</a> <a href="https://pastebin.com/iMmv4Via" rel="nofollow noopener" target="_blank">https://pastebin.com/iMmv4Via</a>

wickedwoohoo

Hey! You need to close the game before opening the file to have the full log printed out, with the current one, all of the necessary data is not there yet. Sorry, but I can't help with the way it is right now. Did you try to start a new save and test? I think attempting a Shallow Save Clean might help as well <a href="https://wickedwhimsmod.com/cleaning-game-save/" rel="nofollow noopener" target="_blank">https://wickedwhimsmod.com/cleaning-game-save/</a>

Anonymous

Edit: I followed the advice you told kaichous about the Shallow Save Clean. That worked! I reinstalled all my mods after and everything seems to be working. Not sure what caused the issue in the first place, all I did was update WW from 139.5 to 139.6 and all hell broke loose, haha. Again thanks for the mod and the support!

Stephen Blake

Hello there, quick question: did the advanced mods duplication checks have an effect on game load times? I noticed from version .3 onwards that when I fired up the Sims 4 it took ages to load up to the menu screen but since the new .6 version of WW it is hugely improved and much quicker.

Anonymous

No rest for the Wicked. Thank you for your hard work.

wickedwoohoo

Hey! Replacing files is never safe. You should remove everything clean and make a fresh installation. Files have to be perfectly placed without any disruptions, even from other old broken mods.

wickedwoohoo

Hey! Sounds like you might have some other penis mods installed that are causing skin issues, you need to look into your Mods folder and remove things to verify.

wickedwoohoo

Hey! The so called advanced duplication checks were based on the fastest way of hashing files offered by Python, but not the fastest way of reading files since it had to be compatible for both Windows and MacOS, so the more individual mod files you have, the slower it would be. So yeah, it was slowing down the initial loading of the game. Unfortunate, as it is pretty helpful to find issues with one's mods, but checking names duplication isn't so bad either.

True AI

Quick question: Since there has been so many change to WW, I'd like to take my settings back to default. Is there a way to do that?

wickedwoohoo

Hey! Just perform a shallow save clean - <a href="https://wickedwhimsmod.com/cleaning-game-save/" rel="nofollow noopener" target="_blank">https://wickedwhimsmod.com/cleaning-game-save/</a> But with the new implementation, some things might require deep cleaning, but I will add a way of avoiding that.

Anonymous

Hey!! Really appreciate your hard work on this mod!!! I love it and you are super talented, and I wanted to ask you if there was a way for couples to watch porn together on the TV? I apologize if this has been asked or discussed, but I haven't been able to find the answer. And if not, is that something you may be working on in the future? Again, thanks for all your hard work!!

Anonymous

its not showing up when clicking on object. i only get setting menu on sim and in game pc. i know its installed as it shows up on start up screen

Anonymous

Just installed 4.3.5.139.7 and I'm getting a repeat of the old problem where multiple sims pairs try and use the same sex location, specifically the double bed. But unlike previously there's no error messages, just a confusion of overlaid animations.

Anonymous

is there a way to use the Streaming drone while executing an WW interaction?

Anonymous

I think you'd have to interact with the drone first and then get into a WW interaction. Otherwise you could turn on the setting that allows vanilla interactions during sex animations. I haven't tried this myself but it seems like it would work!

Datmanv

Hi, at some point, are you going to make condoms compatible with other dicks, for example Hiroki's male dick model?

Anonymous

Since adding the latest version I no longer have sex Animations available to my sims. Just solo ones. I changed nothing except WW. Thanks

Mikey Bohmer

I can't seem to change the strap on for sims, the setting doesn't appear. Am I missing something?

Mikey Bohmer

In fact there is no strapon at all during sex, it doesn't equip. I have the Azmodan strapons, the latest ones, and everything was working okay before I updated WW today.

Mikey Bohmer

Okay, I don't know what the problem was but I reinstalled the strapon mod and I deleted all the WW files and reinstalled them rather than just overwriting them, as I usually do, and now the strapon setting is back, so problem solved. So for the fretting.

wickedwoohoo

Hey! Thanks! Yeah, I will definitely introduce porn on TV, and probably get proper recordings of it so it doesn't looks like crustfest on a bigger screen. I don't know how elaborate I would be able to go with watching it with multiple Sims, but it should be possible.

wickedwoohoo

Hey! I haven't attempted it, so it might be possible, but ideally each penis creator should have their own condoms created for this purpose. Both Noir and Hiroki have made them but are still working on finishing them.

wickedwoohoo

Hey! Are you getting any error messages? Have you tried testing it on a new save game? Is it happening to every Sim? Have you tried using the 'ww.fix' command? The current release comes with a new command. The "ww.debug_sex" command will write some test info into the log file. You can try using it and then closing the game. In the '\Documents\The Sims 4' folder you will find the "WickedWhims.log" file. You can send here by using <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> and pasting the link if the file is not too big. Or you can send it to wickedwoohoo@gmail.com as an attachment. It might contain some information to help solve this.

wickedwoohoo

Hey! Are you getting any error messages? Have you tried testing it on a new save game? Is it happening to every Sim? Have you tried using the 'ww.fix' command? The current release comes with a new command. The "ww.debug_sex" command will write some test info into the log file. You can try using it and then closing the game. In the '\Documents\The Sims 4' folder you will find the "WickedWhims.log" file. You can send here by using <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> and pasting the link if the file is not too big. Or you can send it to wickedwoohoo@gmail.com as an attachment. It might contain some information to help solve this.

wickedwoohoo

Hey! To have the strapon available you need to use a compatible strapon mod. If you have one, that means it needs updating. Download the strapon mods you use again and install them again.

wickedwoohoo

Hey! How many times it happened? I can't really get that to happen, so whatever happened in your might be just a one time fluke.

Lupobianco Animations

Happy New Year TURBODRIVER :D and thanks for the update :D

Anonymous

Hey! Just a tip: always delete the old files before installing the new. Don't overwrite them. That can cause problems as you've experienced. It also helps prevent the possibility of duplicates being added.

Stephen Blake

Not sure if anybody else is having this issue but thought I'd flag it up just in case. I'm getting a greater frequency of Last Crash files being generated when fully exiting the game since updating to the .8 version of WW...

Anonymous

Hi! Does this happen when you have just WW in your Mods folder?

Anonymous

i keep getting a error message and my sims wont sleep they lay down and keep getting up

Anonymous

<a href="https://pastebin.com/RbsKhk72" rel="nofollow noopener" target="_blank">https://pastebin.com/RbsKhk72</a>

instantmagic

Hey! What are these new files? Similar to last exception? And are the safe to delete?

wickedwoohoo

Hey! Thanks for the report! Looks like not owning Get Together is causing issues, I will get that fixed soon.

SimplyRod

hello the sims I played don't embrace nudity autonomously as Npcs like previous version. Although their nudity competence is totally reached.

Anonymous

When I hit shift-ww-debug-generalinfo it turns my sims hair into the green short mohawkish hair style. I tried it with the other options under bedbug and it only happens when I hit general info. When I go into cas I see their normal hairstyle and not the green

wickedwoohoo

Hey! Are you using the .139.8 version? This issue has been fixed in version .139.5.

wickedwoohoo

Hey! I have no idea, I guess it's magic of the game. This interaction shouldn't be used in normal gameplay so be careful.

DeliaDeetz

Just curious, has anyone reported any issues with the sex activities for clubs? I just made a sex club for the first time in this save and all 8 of the members just keep resetting with the blue box warning that there was an issue running the animation. I ended the club gathering and the animations triggered like they are supposed to.

Anonymous

Hi! I'm a Patreon. I downloaded this last version of Wicked Whims following the instructions. I've the last version of the game and also each cc or mod is updated (MCC; etc.). It doesn't appear any "last exception" or any error and the game plays correctly. It appears the window on the right which tells me that I installed correctly the last version of Wicked Whims (in English without any kind of translation). I downloaded other animations that are mentioned on the window of Wicked Whims. It's not the first time I use them but I don't know why when I select the "Wicked Whims" with my Sims it appears only the voice "Sex NPC" and even if I try to select it appears an empty white space with no any name of animations installed in my folder Mods. I had the same problem with the previous version of Wicked Whims 6 January 2019.

Cher151

I keep getting your messages, but I've been too busy &amp; sick to do the update. Am I missing anything important? I worked so hard in December to fix my female sims. Is this an important update? Thanks!

Megaira

I got a wicked whims exception when my male sim had cum on his face and kissed his male lover <a href="https://pastebin.com/QhKcGUrD" rel="nofollow noopener" target="_blank">https://pastebin.com/QhKcGUrD</a>

althekoolkid

So. . . I have a relatively complex troubleshooting issue that involved multiple mods. . . I'm trying to create a one of these cloven sims. . . NOTE It is a female with the "this sim has a penis" option enabled. . . (<a href="http://pyxiidis.tumblr.com/post/179538353771/dionysus-things-for-cloven-folk-by-pyxis-satyrs)" rel="nofollow noopener" target="_blank">http://pyxiidis.tumblr.com/post/179538353771/dionysus-things-for-cloven-folk-by-pyxis-satyrs)</a> I use the outfit tools mod to change the bathing 1 outfit to include the hair (a legging item) and the hooves (a shoe item). <a href="http://modthesims.info/d/541770/outfit-tools-copy-any-outfit-v4.html" rel="nofollow noopener" target="_blank">http://modthesims.info/d/541770/outfit-tools-copy-any-outfit-v4.html</a> Everything base game wise seams to work (in the shower, etc) the correct articles remain equiped, but during Wicked Whim interaction both the fur and hooves are removed. I have tried a bunch of various "outfit settings" options yet I cant seem to get them to remain equipped during animations. . . an I missing something?

wickedwoohoo

Hey! One of my test saves has two full clubs, that include NPC Sims, run sex interactions at a lot with one bed. Everything seems to be running properly after multiple attempts, so I can't exactly encounter the issues you explain. If you have any details to add on why this might be happening, I will take a look. Perhaps the locations they use affect it?

wickedwoohoo

Hey! Every single change is listed at the top of the post. If you think any of that is important enough to update, you can do it. There will be plenty more of my messages because I want to ensure the mod runs as well as it can, which requires fixing and improving anything I can think of.

wickedwoohoo

Hey! The best you can try doing is disabling undressing on the Sim itself. Enable 'testingcheats' and shift+click on the Sim. Then under 'Wicked' you will find an interaction called "Disable Undressing in Sex". Then, the second thing you want to do is in Nudity Settings -&gt; Outfit Settings, and disable "Auto Reset Bathing Outfits". Disabling this might break bathing outfits for other Sims, so you might need to skip it if that happens.

wickedwoohoo

Hey! Have you tried testing it on a new save game? Is it happening to every Sim? Have you tried using the 'ww.fix' command? The current release comes with a new command. The "ww.debug_sex" command will write some test info into the log file. You can try using it and then closing the game. In the '\Documents\The Sims 4' folder you will find the "WickedWhims.log" file. You can send here by using <a href="https://pastebin.com/" rel="nofollow noopener" target="_blank">https://pastebin.com/</a> and pasting the link if the file is not too big. Or you can send it to wickedwoohoo@gmail.com as an attachment. It might contain some information to help solve this.

dmaster1968

say there seems to be some weird conflict with the acting career - it seems to disappear with the latest WW version. I sent the exception file to the gmail as dmaster1968. could you check? thanks

Anonymous

I have dl 4.3.5.139.9 but it is saying i have .5 not .9?

wickedwoohoo

Hey! Please make sure you are actually using the 4.3.5.139.9 release as I'm pretty certain the version number is displayed correctly in-game.

wickedwoohoo

Hey! The error looks like it has an issue with reading of the work schedule data from some Sim. This might be caused by a Sim getting promoted/demoted or leaving their job while not everything got updated properly. Unfortunately, there is no solid information on this matter, but maybe knowing this will help you to pinpoint where this came from.

instantmagic

Just wondering if it is possible to completely remove the condoms, birth control pills, and pads for the menstrual cycles? I like my Sims to be natural but these are a little too real if you get my drift. I found some things in settings, but maybe need something like: "Remove all chances of birth control and menstrual cycle items." Just wondering.

Anonymous

You can set it for either straight percentage or no pregnancy and it gets rid of the menstrual cycle.

Anonymous

I just finished cleaning and reorganizing my mod folder today after noticing all my penises were missing. I fixed that, yay! So now, the problem I'm having is finding the randomization of all the penises in the world. Was that option moved or removed?

Datmanv

Hey Turbo, Happy New Year!!! Can you please explain why my NPC sims still dress up after sex even with the setting off? Oooh yah, one more thing. How much convincing can I do to get a NPC sim to go naked for me? I can't role play like this lol jk. Real talk though, I can't get a NPC sim to go naked, I did three days conversing including the WW and romance social menu, nothing works.

Anonymous

I would like to say thanks for the efforts.

Anonymous

Hi Turbo, With this last update masturbation no longer bumps up Social was that a purposeful change. If so is there any way you can please put it back.

Brian Zaenglein

I'm seeing my sim waking up, or trying to (I cancel it) to masturbate/watch porn. A bit of an issue, more so if there were more sims in the household-- they don't go back to bed on their own if their energy has at least gotten into the green. 8:00, time for work, they're exhausted all day because they got up at 3 to rub one out and then stayed up.

Brian Zaenglein

And then a separate suggestion: Being able to click an object and set it as a preferred spot for autonomous action. It would be nice if sims would use their CC toys on their own, or certain objects have animations you especially like. Maybe something like (Name) (dislikes)/(likes)/(LOVES) this location for autonomous (solo)/(partner) sex.

wickedwoohoo

Hey! All body related options are in the Body Selector, including the randomization option.

wickedwoohoo

Hey! Happy New Year to you too! Depends in what context. If they dress up instantly (without animation) then something might not work, but if they dress up with a normal spinning animation, they that is dependent on their Nudity skill, which is separate from sex. For convincing, to be fair, I don't think I did enough testing on that to be sure. The system works mainly with the "influence". That means, when you convince Sims to nudity and are nude around them, their influence grows. After each day ends, some of that influence converts to skill. This might need balancing as I'm not sure how well it can progress. I will take a look at that at some point.

wickedwoohoo

Hey! Somehow I never realized this is a thing, but it was never disabled. If you're talking about computer masturbation, that will not increase social. But a solo sex interaction still does.

wickedwoohoo

Hey! Looks like checks if Sims are sleeping is broken, thank you for reporting it!

wickedwoohoo

Hey! One of the improvements for autonomy I have planned is dynamic preference, where Sims would attempt to use locations and animations that the user select manually. With that, you wouldn't need set anything as preference, although that would be pretty useful too, but Sims themselves would learn what is preferable to use for the player to watch.

Anonymous

Hi Turbo, First of all thank you for all the support and feature you include in this mod, this is amazing. Would it be possible to create a 'Ask to have sex with someone' interaction for the sims? The active sim could ask another sim this and after that a pop up window would show the available sims in the area. This would be awesome for my cuckold sim :) Thank you very much again!

Vera

Hi! My female Sims can't block their period with the pill anymore. How can I fix it? The moodlet "early on birth control" is stuck and doesn't change after the 3 days required to full effect. Help! Thanks.

TL-Hero

Happy new year TurboDriver. I have 2 questions #1 - you did an update prior to the 4.3.5.139.X updates that you mentioned that you made some changes (improvements) on the logic used for Household members seeking sex with one another. With that update, I noticed a significant increase (improvement) where the couple in my household actually sought sex with one another - as opposed to usually only visiting sims seeking interest. Since release of 4.3.5.139.X, I have not had this happen at all. I'm wondering if something was reverted with this large recent overhaul. #2 - I am not seeing strap-ons being used in animations since release of 4.3.5.139.X. I can't find the options in the WickedWhims wheel now under accessories. So I'm not sure how to correct this issue.

Anonymous

I don´t know if it´s hidden somewhere or something but where did the "statistics" go when you click on wickedwhims on a sim? it used to be Right there but now since a few updates i can´t seem to find it. help please? thank you!

Anonymous

Is the random penis option still there? Kinda sucks that everyone has the same penis and I have the manually give them a different one.

Anonymous

I am having trouble. I haven't played sims for about 6 months A couple of days ago I downloaded weather DLC and knew I would have to download the latest version of your mod. I put it in mods folder like I always do, removed the old ver. Didn't work, no notice that it was installed. checked custom content it is there. I then removed it and downloaded TS4 mod manager and used that to install it. Still nothing. Please help PS Sims is Ver. 1.48.94.1020 Thank you

wickedwoohoo

Hey! I don't recall any changes to sex autonomy in this release other than the listed ones. Majority of assumptions with autonomy are just cases where things don't happen the way you imagine. Everything works as intended, but any small detail that changes on the lot affects autonomy behavior. So even though everything is tweaked for a balance between player Sims and NPC Sims, you can have an unlucky streak. To use strapons you need to have the most recent compatible version. Updating is always one of the first things worth doing when something doesn't work.

TL-Hero

im fairly certain you can do "random" in the body selector menu. In the wheel you have the option to change "this sim" or all sims. but not sure how many different phallus options there are.

feellessguy

Hi Turbo, I have serval questions about this update lately. I have one of my sim had the trait that can make him to easy to let other people to accepts woohoo with him(I cannot remember the name of that trait because I used the international translate version). So before that I can easy to ask someone to woohoo in my household even she or him have 0 romance relationship with him. But after update it seems they start to denied the woohoo even with a little romance relationship. I moved the same sims that were accept the woohoo when 0 romance out, and now I have 50 romance with her but she denied the woohoo. So I wonder what happened and one more question, I notice that there is a cheats let Sims accepts woohoo all the time. but is that means if an NPC ask another NPC to woohoo, it will give them the cheats as well? tank you!

feellessguy

yeah it is gone for me as well. I use a translated version so I though might be because of the translation problem but it seems happened to you,too it was a good feature, you can check it if your sims wife/husband cheated on you or not :P

Anonymous

Hi! Are you talking about woohoo or sex? They are different things and WickedWhims adds sex to the game. There is not a trait in WW that makes Sims always accept sex propositions, but there is a setting that does this. You can get to it by going through Sex Settings &gt; Cheats &gt; and then checking Always Accept Switch.

Anonymous

Hello! Make sure you're installing WW either directly inside the Mods folder or nested only 1 folder deep. You can read the installation page on TURBODRIVER's website for more information. <a href="https://wickedwhimsmod.com/manual-mod-installation/" rel="nofollow noopener" target="_blank">https://wickedwhimsmod.com/manual-mod-installation/</a>

wickedwoohoo

Hey! Taking birth control pills can be tricky and may require taking it for 4 days (or more if you're not consistent) as the effect of it is constantly regulating itself. I would guess you took the pill for the forth day, in which case, the buffs should automatically update. Otherwise you still might be early on birth control. If this system seems uncomfortable for you, I would have recommended switch the birth control mode to a less restrictive one but I just noticed that I had to make a mistake with implementing the settings for it. I will have that fixed in a fix-update soon.

Anonymous

Hello, Tubrodriver! After the last update, the game stopped working. Maybe I'm doing something wrong?

Anonymous

Hi Turbo! I had a question about how the nudity / sex lot signs work. I know it permits autonomous nudity within the lot or room, but does it eliminate the privacy reactions as well? The main application I'm looking to use it for right now is to put it in a spa area with baths so that multiple people can use the room without being shoo'd away every time someone gets naked.

Anonymous

having problems, my sims could do sex interactions for like five minutes( REAL LIFE TIME) then all sex interactions will stop working, even if i switch to another family

EDNurseDee

Ugh, I'm having the same problem. And right now my Sims can't do it with other Sims...only themselves!

wickedwoohoo

Hey! Yes, it should, that's exactly what I made that sign for. The idea of a place where nudity can be considered normal, like a spa or a community shower.

Anonymous

Hi Turbo! I have a question about the body selector. What does it do exactly? Is it like a preference for a sim's body type?

wickedwoohoo

Hey! Body Selector lets you change Sim body models, for top, bottom, feet, and soft penis as well as hard penis. The game only allows to have one body model, but with the Body Selector you can install other body mods and change them per Sim and per body part.

Anonymous

When my sim click on the other sim to pop up the general interaction i get this <a href="https://pastebin.com/vb9e5hwU" rel="nofollow noopener" target="_blank">https://pastebin.com/vb9e5hwU</a> what is this?

Anonymous

So to add other modifications to penis size and such that is a separate mod?

Brian Zaenglein

I just had my sim take an NPC to Granite Falls with 2 goals-- work on fishing, and conceive his baby. She had JUST stopped taking pills, the moodlet had worn off 2-3 hours before they had sex, and she was pregnant the next morning. This is with simple mode at 10%. It's mission accomplished, but-- that seems highly unlikely. I expected to drag this vacation out to 2 weeks before it finally happened...

Brian Zaenglein

And yes, it's his, I checked with MCCC, so it's not a random chance BC failure because she hadn't done him anytime recently before that.

Anonymous

Hi, I'm a new Patreon! So on the free version of the mod, it kinda bulky because you also have to download the different positions and such. Do I need to download anything else other than this new link? Or what is the difference in the two mods?

Vera

I'm sorry to bother you again, Turbo. I'm still having the same issue with the birth control pills. No matter for how many days the take them, they're still early on bc and no full effect. Is there something I can do? Thanks!

Brian Zaenglein

The difference is that the Patreon version is basically the beta test phase. We get to see the new features sooner, and we also get to see the bugs-- and our finding and reporting them helps Turbo fix them. You'll still need all those animation packs, but you don't need special ones. The same ones you downloaded to work with the Lover's Lab version work with the Patreon version. If you have Nisa's Wicked Perversions, that usually does need an update every month when there's a new Wicked Whims version. She usually gets it ready sometime the next day.

RobertAtNyte

Well don't give au you are so amazing in what you do so i know and we all know that you will come through :-) you always do.

James McGoey

Thanks Turbo. So far everything is working well. The new body selector works flawlessly. Thanks so much.

RedAlfa

Well done WickedWhims nice update

Anonymous

Hello! This lastException can be uploaded into <a href="https://lastexception.com/." rel="nofollow noopener" target="_blank">https://lastexception.com/.</a> It will tell you this: "Participant Resolver Type Error Broken mod is misusing tuning resolver functionality. A broken modification adds new or edits existing 'SingleActorAndObjectResolver' resolver function with incorrect data. The mod creator is required to fix this error. You need to locate the PACKAGE file, in your The Sims 4 Mods folder, that could be causing this issue and remove it. If this is a new issue, try removing the most recent mod you have installed." Since you know the trigger, it will be easy to find with the 50/50 method.

Anonymous

Hello! It seems your game has not been updated. Please update your game and try again.

Anonymous

Hey! WickedWhims does not have a feature where the penis size can be changed. If you want different penis sizes, I know that Noir and Dark Sims has several different sizes available and so does BetterBody. You would select them in the Body Selector after installing them in your Mods folder.

wickedwoohoo

Hey again! I took a look at the situation with birth control pills and for the most part, I haven't found issues with it functioning. There is a downside to how it works though, which I will fix in the next update. That is, each pill you take decays overtime, which means that the longer you wait with taking a pill, the longer it takes to kick into the full birth control effect. I made pills give overhead so that the time between taking pills is even. Switching the 'Birth Control Mode' setting to 'Perfect Mode' causes current and future pills to instantly take full effect. Did you try that?

Anonymous

Hi Turbo and staff, I am not getting an exception file for my issue but I thought I would ask if you knew a solution. I have spent 2 days trying to fix this on my own but I came up empty, so, the issue is only that I never get asked for sex... like ever. I did a complete clean install of WW, I tried the ww.fix, the Shallow Clean and the Deep clean, I tried turning up the autonomy to the highest setting to get it to trigger, every sim in the club was happily sexing it up and no matter how much flirting/seducing I do the sims would just walk away and have sex with another sim or simply play with themselves. I know it's not a major issue and you probably have better things to worry about, but I used to get asked for sex all the time. I am hoping it's an easy fix, thankyou all for your time.

wickedwoohoo

Hey! Assuming you didn't specifically disable the possibility of it happening, there shouldn't be many things that can prevent it. The current autonomy implementation makes sure that between NPC and Player Sims there is a perfect 50/50 split chance of pairing Sims for sex. So I don't see any way of your Sim being left out, unless.... - You didn't enable autonomy in the game settings. Your playable Sims cannot participate in autonomy if they are not autonomous themselves. - Your Sim has absolutely no relationship score and is being sorted out. You can use the 'ww.test_sex_autonomy_sims' command to see. It will display a list of available Sims (which your should be there), and list of possible pairs (which your should be there too). If majority of pairs doesn't involve your Sim, you might just be left out because other Sims don't preference you from lack of relationship. If your Sim is not available, then oof, there can be plenty of reasons for that. Make sure they not a part of some important event and that their needs are in order.

Anonymous

Hi! One question: is there a way to disable the automatic use of condoms?

Brian Zaenglein

If it's your controlled sim that has the condoms, you can just click on the condoms in their inventory and choose "Disallow Automatic Use." If it's an NPC you're trying to get your sim pregnant with, you can go into WW settings, somewhere under sex settings there will be NPC Birth Control Mode, and you can choose Unsafe Mode. You can always put it back where it was once you've succeeded.

Anonymous

Hello Turbo or anyone who can help me. I have the latest ww downloaded and i am having trouble getting NPC to ask player sims for sex..I have tried everything from the WW settings menu to help influence the chances and its still not working. I even got my traits as the suggested traits from WW page, ie, romantic, hypersexual ect and its still not working..am i missing something over here? would really appreciate the help. Thanks!

Brian Zaenglein

Does the game not consider a fenced back yard to be a "room?" I placed a "Nudity Allowed in this room" sign to the back of the house, since it seems they wouldn't apply to the fence. But my naturism level 1 sim still won't undress there, and my level 4 sim still gets reactions.

wickedwoohoo

Hey! If you click on the fence and it shows a divided whole region as if it was a room, it should be considered as a separate room (block). Make sure the sign is at the height of the fence, if it's too high, it might be considered as outside of the block.

M

I’m a bit confused on how the “sims risky factor” works under “autonomy location styles”. I have it set to 2.0 but my sims parents just had sex right in front of her. Most of my settings are pretty low. What can I do to avoid that in the future?

wickedwoohoo

Hey! I don't know who is "her", but 'Sims Risky Factor' is used as a multiplier for each Sim, no matter the age, that is in a room towards the Risky Location Style. So if there are 4 Sims in a room, and the 'Sims Risky Factor' setting is set to 2.0, that is 4.0*2.0=8.0. That 8.0 is the value used to define the room as a Risky Location. This doesn't prevent Sims from using that room though, because they can still specifically decide to look for a risky location. You can prevent it by disabling Risky Locations in settings. And, if the room was empty at the moment of deciding, it wasn't risky then, but when a Sim entered it after Sims were already going to have sex there, there couldn't know.

xXAlphaWolfGamesXx

im still getting fatal errors duplicate copies of wicked whims installed an im only using one

wickedwoohoo

Hey! If the computer sees multiple copies, you have multiple copies and you must be unaware of it. Better got for a scavenge hunt and find it sooner than later.

Anonymous

Good morning, so my females do not have strap on's during sex when they should. I have them down loaded and can find them with clothes options but not in the sex areas

Anonymous

My NPC sex option is gone, is anyone else having this problem?

Greg

Hey I suddenly have the problem with condoms not showing up anymore. I installed an older version of BB to have a better body in CAS but that is only the upper body. Does this prevent them from showing up? Edit: Nope deactivating the body did not make the condom appear

Anonymous

I swear Turbo..you are incredible. And they say James Brown was the hardest working man in show business. well I beg to differ cause I probably would have given up a while ago. you have to have a tenacious and focused spirit to deal with these major hiccups, so thank you for your time. Thank you for your patience and Thank you for continuing to find ways to beat the many restrictions placed in this games programming. I appreciate you..Ciao

LieWe

Hi! Since the Update I have the problem, that the Tongue is not working anymore u.u Even in the settings, some fields are empty. I do not see any description there anymore

Brian Zaenglein

What tongue mod are you using? I have the head replacement mod that one of the animation creators linked on their LL page, and it's working fine. It's 3 files which all start with NANDONG.

SimplyRod

Hello turbodriver. Your last updates were very succesfull but I meet a problem. My sims always can't increase their nudity skills although they roam nude in front of others. Sounds like there is very few nudity influence I'm not naturist IRL nor nudist at all IRL, but I found this fun when they randomly streak in the street. lol .

Anonymous

Hey! Showing up where? On the penis, or in the inventory? WW condoms only work for the default WW penis and BB condoms work for the BB penises. If you don't have the BB penises and are trying to use the BB condoms then they won't show up.

Brian Zaenglein

I've noticed it's harder to increase naturism myself. I used to just trick a sim into jogging naked a few times and that would get them to level 2. (change into workout clothes, undress completely, Go Jogging. They will run through the neighborhood naked, but will finish the task before dressing.) Now they'll walk around the house naked all day, be around their lover who is also naked, nothing. You have to find ways to push them beyond their comfort level to get anything now. Tricking them into jogging naked still increases naturism, but not as much.

wickedwoohoo

Hey! Update the strapon mods right now and they should be working, the older versions are not supported.

wickedwoohoo

Thank you! :D I guess it's human to see the worst in yourself because I feel like I'm too lazy sometimes, but I love what I'm doing so I see no reason to give up. :)

SimplyRod

I tried a lot of many things, as well as I define settings on high nudity occurency but... So i will try to make my sims to talk to a lot of strangers. maybe there will be soms changings. I'll tell you :)

Kedokata

So, a bit of an odd (and probably uncommon) gripe, but I'm not a fan of the new way to check Sim stats. The main issue being that I can't check the stats of Sims that aren't a member of my household; I really enjoyed checking the stats of every Sim, and now that I can't I'm admittedly a bit cheesed.

SimplyRod

I agree a lot with you kedokate. Furthermore they were all reinitialized to zero.

Anonymous

Ever since I updated the mod, it hasn't been detecting my other animations? It says no animations loaded. Could anyone help?

Anonymous

I have a issue Everytime I select objects and hit the sex and vaginal it doesn't do nothing...when I go try it again it shows npc opition..my sim opition is now gone...what did I go wrong

Anonymous

(if this isn't the correct place to ask this, I apologize) I updated WW this January, and for the most part everything is fine, but with any animation that involves a male, their genitalia seems to floating, immobile, and stretched away from the place it should be. I've tried several things but haven't been able to figure this one out

Anonymous

did you double check to make sure your body mod is up to date and not duplicated?

wickedwoohoo

Hey! I think it's more on the common side. Reimplementing a lot of the save data, especially the unstable stuff (which includes statistics) was a high priority as it was one of the most annoying issues. A short-sighted perspective on the statistics system reimplementation caused me to omit a feature that was there and I intent to bring it back in some form. I don't think it will be as detailed as in the past, mainly because of the difficultly of keeping it updated, but a convenient way to check other SIms statistics should be back.

wickedwoohoo

Hey! Make sure you didn't create too complex folders structure. When files are in a folder, that is in a folder, that is in a folder, that is in a folder, that is in a folder, that is in a folder, then these files will not be loaded into the game.

wickedwoohoo

Hey! Sounds like you're using some old release of WickedWhims. Make sure to update to .139.13 version.

Stephen Blake

Hello there. Getting a completely random LE - totally unable to produce it at will. It started at the weekend. I updated WW (Patreon) and AEP pornography mod (LL). Originally the LEs mentioned WW, AEP and Nisa's Wicked Perversions. However, I updated Nisa's mod to the most recent Patreon release yesterday and now Wicked Perversions and AEP are not mentioned in the LEs at all. However, doesn't mean they are not a factor, I guess. Hope you can figure it out! I have send a copy of the LE to Nisa and Ksuihuh also. <a href="https://pastebin.com/kDzSg9em" rel="nofollow noopener" target="_blank">https://pastebin.com/kDzSg9em</a> Thanks for any help you can give!

wickedwoohoo

Hey! This one is caused by piles of snow melting. I don't know why it happens but I've seen it a few times reported by others. All you can do is just wait for them all to melt or remove them manually. Nothing big.

RobertAtNyte

I look forward to seeing what you can do with a Mod like this for The Sims 5 when the time comes :-)

Anonymous

Hi, every time I want to initiate seks with this version of the mod I get the WW error 'Tried to assign actor on seks handler creaton and failed'. The first time it happened I deleted the animation in question but now it also happens with Anarcis' animations. I'm not trying on anything special (bed) and male/female. Never had this error before...

Vidde

Thanks for this awesome mod! I am trying to initiate vaginal sex with a sim that hates children but she refuses without protection. How do I turn this off? Or do I just remove the trait until she's preggers? (Yes, I am being evil)

Anonymous

I keep getting the error message also

D Love

Turbo...Question...In the Sex Setting/In Autonomy Settings is Autonomy Animations Disabler - is this setting for NPC Sex? Cuz In Sex Settings/below Cheats is Animations Disabler...Is this for Player Sims? THX 8)

Anonymous

I cannot remove "Default woohoo" and "try for baby" interactions In "other settings" default woohoo" switch is unmarked (off) same Vanilla are off still I see those interactions are available during romantic interactions. I do not remember what revision of WW enabled them again (at some point they were disabled succesfully

Anonymous

I seem to be having an issue with the new update. When I open up and go into my sims, even when I start playing, everything seems fine. I get both the green message and purple message saying all has been updated and this latest version is running ok. But then, as I test it, it seems when I try to do any "wicked" interactions, the sims accept, but a blue message pops up and I get this message - "wickedwhims error - tried to assign actor on sex handler creation and failed" What could that mean?

Anonymous

here's the exception if it helps. <a href="https://pastebin.com/Uy5tsMhd" rel="nofollow noopener" target="_blank">https://pastebin.com/Uy5tsMhd</a>

wickedwoohoo

Hey! No, there is no way to turn that off, but I will most likely add a way to do that once I get to rework some of that code. Removing the trait is the best option. Otherwise, even when using birth control, it is possible that it will fail (on realistic mode), so a Sim that hates children can get pregnant that way, but it's very unlikely.

wickedwoohoo

Hey! It's to disable animations exclusively for autonomy, so no Sim, player or NPC, will be able to use them when the sex is autonomous. But yeah, that will be mainly NPC Sims. The normal Animations Disabler disables animations completely, they become inaccessible.

wickedwoohoo

Hey! I just tested it and disabling Woohoo+Try For Baby works just fine. Make sure you have it disabled, and try saving and restarting your game.

Anonymous

Hey! Thanks for all the hard-work you put into Wicked Whims! I simply love this mod; though I do have a slight problem. I've been trying to mess around with gender options and such in the settings bc my sim (who is male; assigned in CAS as well) keeps being the "top" in sex scenes. Is there anything I can do to make it so that my sim is passive in sex scenes? Putting Male players as both helped a little in, but majority of time my sim "tops" bc he's initiating sex.

Brian Zaenglein

Once sex has begun you can click on him, click the WW tab, and swap his spot. This is assuming we're talking about gay animations, if he's with a female there's plenty of cowgirl and femdom animations available.

Anonymous

I am aware of that. I was just wondering if there was a way I can just start out as the “bottom” bc I’m using Nisa's mod with WW, and the prostitution and virginity potions of her mod get a little weird when I’m “top”. I’m on my phone, and it won’t let me reply on my thread.

Anonymous

The best way I've found to deal with it is set gender recognition to "sim specific" and set my gay bottom's gender as female. I've talked with Turbo and there still isn't a good way to manage what we're both trying to accomplish. I set him as female and when I want him to use male animations e.g. masturbation or watching porn on the PC, I just click the menu and swap it over temporarily. It's a little inelegant but It has worked well for now. The way things are set up now, the code always recognizes the initiator as the penetrator if they are set to male and have a penis.

Dat_Ghosty

Soo, Quick bit of info. This is the only mod I had updated. But Im getting animation handling errors on every animation I try. I ended up having to Get the Mod update from December to get it to work . But at this time and I'm sure it's probably on my end and I'm just not thinking of what it is yet. This current update no worky for me. I'll keep ya updated

Dat_Ghosty

Discovery!!!! So after fiddling around for a while I found its a mix of both your new update and Nisa having yet to update hers. so solution. I must wait :/

Anonymous

Are any body hair mods working with this version of WW?

Anonymous

I got this LE this AM. I was on a public whore house type lot if it helps. <a href="https://pastebin.com/sZfBJi6K" rel="nofollow noopener" target="_blank">https://pastebin.com/sZfBJi6K</a>

Anonymous

As long as they are applied in CAS they should have never stopped.

MuamerkkiGaming

Some reason condom wont show on my sim when he is having sex and I used one. But when NPC have sex condom will show. its weird :P

wickedwoohoo

Hey! You can ignore it, if you want to know what it is, please check out the <a href="http://lastexception.com/" rel="nofollow noopener" target="_blank">http://lastexception.com/</a> website.

wickedwoohoo

Hey! Condoms are specific to the used penis model, at least as of right now. If your Sim is using a different penis model than the default model, the default condom will not show. I haven't tested if the condom works with different models, so I haven't allowed it, but once I do and it works, I will. Creators of the other penis mods are able to add their own condoms to the game if they choose to.

wickedwoohoo

Hey! Please remove the CNWW mod or check if it can be updated to work. Normally it's not compatible with the test releases on Patreon.

Anonymous

Good morning I received this exception report &lt;script src="https://pastebin.com/embed_js/hsKzCACt"&gt;&lt;/script&gt;

wickedwoohoo

Hey! This is an issue with the game when a Sim was at work but the game forces them to come back. I have reported it to Maxis already, maybe it will get fixed at some point.

Yolanda Zanie

Is anyone having issues with the game not saving? i have not been able to save my game at all

Marvin

Would it be possible to make a toggle under settings that does the same as the cheat "ww.global_convert_to_exhibitionism"? To me, it makes more of a simulation if people get turned on at preferred gender nudity, rather than having to be an exhibitionist who is used to being around naked people. May as well include a setting for "ww.random_sims_underwear" please.

Anonymous

Just updated my WW. Did Turbo decide to take out the Sim Statistics? I actually liked that it kept up with all of that info. Also, cuckold sims aren't watching sex. I haven't been all too active in the Sim community recently, so I'm not sure if any explanations have been given.

wickedwoohoo

Hey! What kind of indication of the game not saving you get? If it's a message box saying so, this will most likely be some badly made mod affecting it. It's very easy to mess up some basic elements that are saved by the game which breaks saving. You should take a look at any PACKAGE files you recently put into your Mods folder.

wickedwoohoo

Hey! I don't really understand what do you mean with Exhibitionism. Sims will get naked with either one, the main difference between them is what kind of actions can be performed and other minor benefits they gain. Random underwear is applied by default on any new Sim (or when you start a new game). The command is to apply it after the fact, when you put in the mod in an already running save game.

wickedwoohoo

Hey! Statistics were moved to the Simology Statistics menu, you can read about this above, in the changelog. Later on I will introduce back a way of looking up other Sims statistics, that was something I unknowingly missed. I'm not encountering any issues with cuckold reactions + masturbation. If you could explain to me the situation with details, I could try to replicate it and see what's the problem.

Anonymous

<a href="https://pastebin.com/38xfg0Wj" rel="nofollow noopener" target="_blank">https://pastebin.com/38xfg0Wj</a>

wickedwoohoo

Hey! This isn't anything important, you can ignore it. If you want to know details, check out the <a href="http://lastexception.com/" rel="nofollow noopener" target="_blank">http://lastexception.com/</a> website.

Anonymous

ok thanks

dmaster1968

The latest version interferes with the Acting Career

Brian Zaenglein

I'm seeing an undressing glitch, doesn't happen every time. The female of a straight pair is changing into her everyday outfit instead of undressing. At least one of the times she had been wearing a club uniform before, another time she was either already naked or wearing sleepwear, I don't remember which.

Brian Zaenglein

Oh, and the first time was while 2 clubs were meeting at the same time, she runs the "Slutz" and he was one of the "Studz." The second time was after the club meetings, but in the same session without a save and exit first.

Anonymous

Something is making the Acting Career disappear

Kedokata

So does the ovulation cycle reset everytime you change households? Or does it just freeze? I'll change households every once in a while to try and get a couple pregnant, but every time it says they're 9 days away from ovulation. I then switch back to my main family then switch back to the family a few days later, and still 9 days. Edit: Also, has it always been like that? I've never seen it before. And if it used to not be that way, please change it back, because managing multiple families is now impossible.

Kedokata

Okay, now I'm almost positive it's happening. Anytime I invite a non-household sim over they're 9 days away from ovulation. Everytime a Sim leaves the lot they reset. This really gums up everything I've got going on in my game right now.

M

Hi, I’m having an issue where whenever I change my sims underwear, it doesn’t stay that way after a few hours of gameplay. I’ve tried it three times now.

wickedwoohoo

Hey! What does that mean? Are you maybe referring to the bug listed in the "Known Bugs" list at the end of the post? If not, I don't know what is that you're trying to say.

wickedwoohoo

Hey! When do you experience such thing? Can you give me any details on how would I try making it happen?

wickedwoohoo

Hey! Are you using the 4.3.5.139.16 version? Underwear data is saved within the saves extra data files, and these are somewhat unstable. This update actually introduced a new way of saving data, which is stable, but underwear data is far too complicated to save it all properly using it, so it's still using the older system. Updates released after the initial .139 version tried to fix this issue, that's why I'm asking if you're using the most recent version. Otherwise I might not be able to say anything helpful as there isn't even a clear indicator why this is occurring.

Datmanv

<a href="https://pastebin.com/tEEAAjVL" rel="nofollow noopener" target="_blank">https://pastebin.com/tEEAAjVL</a>

Anonymous

I have a save where I am unable to get the fertility treatment option to show up on my Sim's cell phone. The box with the option itself doesn't appear at all. Additionally, I don't have the option to have any of my Sims in this particular save take a fertility awareness test on the toilet, either. As with the cell phone, the option box when clicking on the toilet does not appear at all. This issue doesn't occur in any of my other saved games, only this particular one. I am running the most current version of WW and TS4.

Anonymous

Did some testing, figured it out my issue has something to do with that save. Don't know what but made a fresh save with that household and this issue is fixed. Thanks for all that you do!

wickedwoohoo

Hey! Issue with "LittleMsSam:Buff_MoreFunStuff_Motives_Fun", you should report it to LMS.

feellessguy

hello turbo! i had this error popping up all the time I been ignore cos lastException told me its safe to ignore but just yesterday I got more error that tells me i need TS4 PACKAGE SEARCHER so I used it but turns out the last exceptioin gives me 5 digit number and 6 digit number that cannot find anything so can you take a look see what's going on? thanks <a href="https://pastebin.com/DiPyCU7j" rel="nofollow noopener" target="_blank">https://pastebin.com/DiPyCU7j</a>

Anonymous

Hey all I was just wondering is there a sexual preference setting or trait or something of this nature in the mod at the moment? I remember seeing some thing like that a couple of updates ago and I'm not sure if it was taken out to rebuild it or if it was just updated and I am unaware of how to control it.

wickedwoohoo

Hey! Remove any stereo/audio/music related mods and try enabling fame (if you have Get Famous) and save the game with it.

wickedwoohoo

Hey! There never was any sexual preference, but the base game has a gender preference system in place that dynamically changes depending on with who you have social romantic interactions. You can change it with these commands: <a href="https://wickedwhimsmod.com/relationships-gender-preference/" rel="nofollow noopener" target="_blank">https://wickedwhimsmod.com/relationships-gender-preference/</a>

Anonymous

Hey 👋 Is There A Place In The Setting To Get The Strap On To Work?

Anonymous

Thank is it on here or the website

Anonymous

Hey! Click the curly arrow to reply directly. The download would be where you previously downloaded the strapon.

Dalal Rose

can we get a sign that forces people to use birth control on a lot or room? and other signs that says no birth control to be used in a room?

Anonymous

hey turbo I changed my sims underwear and for her hot weather outfit I choose her just to wear panties and no bra but when she is undressing she still uses the default white bra and if I go back to the underwear CAS the mannequin is wearing that white bra again.

Anonymous

Great work! Impressions are awesome. I was just wondering if you would consider adding a few custom traits into the mix. My sim has heartbreaker and sweet talker, which would make him a lover. But since those traits don´t seem to count he´s a caregiver and innocent because of his childish and family-oriented traits. I´m keeping my fingers crossed. Thanks for a great mod.

wickedwoohoo

Hey! Please comment under the post related to the WickedWhims update you're referring to. You can change that Sim archetypes by using these commands: - 'ww.set_major_personality_archetype &lt;archetype&gt;' - 'ww.set_minor_personality_archetype &lt;archetype&gt;'

knuti

ok, can I disable personality archetypes? I really need it :/