r/thesims3

Image 1 — Where can I find a freckled skin overlay or mask that looks like this? For Sims 3!!
Image 2 — Where can I find a freckled skin overlay or mask that looks like this? For Sims 3!!
Image 3 — Where can I find a freckled skin overlay or mask that looks like this? For Sims 3!!
Image 4 — Where can I find a freckled skin overlay or mask that looks like this? For Sims 3!!
▲ 30 r/thesims3+1 crossposts

Where can I find a freckled skin overlay or mask that looks like this? For Sims 3!!

Does anyone know where I can find freckled skin that looks similar to the ones that are Sims 4? I included some photos of what I'm talking about
I like how theres freckles all all around the body (chest, back, legs, arms) and i'm looking for something that can be similar but not too realistic

u/Waste-Daikon2817 — 1 day ago

Is ts3 exhange safe? Help

I downloaded a few sims from the sims 3 exhange/store site, but i think they crashed my game..
Im not sure tho cuz i have had a lot of problems lately 🙃
But isn’t this a lot of kb/memory per sim, even with some cc?? Helppp

(Sorry english isn’t my mother tongue, but hope it made sense)

u/marsla13 — 3 days ago

The sims 3 store content not working

I’ve recently tried to play ts3. The last time I played was probably February and had no issues with my store content nor have I ever really. When I opened my game I noticed my store content was missing. I also noticed no matter how many times I log in to the launcher or on the main screen menu, I don’t stay logged in. I have deleted all my downloads and re downloaded them from the store and re installed them, still not in my game. And still every time I launch the game from the launcher, logged in, the menu in game says I am not, and need to log in again. If I log in on the Home Screen I can access my downloads from there and hit install and it says success but nothing ever appears in game. I’m lost I’m unsure what to do but I don’t want to play without my store content :/ also when I try to re install from the launcher it does appear in installed content but I run the game and it’s not there, then close, all the items have disappeared from “installed items”. And no I don’t have “run without custom content” checked and I have reset my computer. I’m running on a pre built omen PC that’s 3 years old and running most recent Microsoft and don’t have internet explorer at all. I’ve never had any issues with ts3 on this computer, nor have had to use any work arounds

reddit.com
u/No-Bluejay-3992 — 2 days ago

Which expansion packs are worth it?

I currently only have pets, mastersuite stuff (thought I had late night but turns out it’s gone from my packs), supernatural and generations. I have sims 3 for years now and haven’t bought a new pack in forever. I want to get a few new ones but I’m not sure which to get

Edit: I discovered instant gaming from a tiktok and got late night, ambitions, university, seasons. It was like 27 for all 4 together I think

reddit.com
u/Unhappy_Level_4813 — 4 days ago

Discord Community

Looking for more Sims friends 💜🎮
I recently made a small Discord server for people who love The Sims 4 and want a chill place to chat, share builds/screenshots, talk about gameplay, and hang out during streams.
It’s brand new, so I’m hoping to meet some other Simmers who’d like to help grow a cozy little community. 🦇🌙
If anyone is interested, let me know and I can send you the invite!

reddit.com
u/alixvfrost — 3 days ago
▲ 415 r/thesims3

The "shed" that my 11-year old niece keeps her son's step-daughter in that she wasn't aware existed until they tied the knot - the kids are alright

This is Emily Jolina, Jamie Jolina's adopted daughter.

u/TheRowingBoats — 6 days ago

modthesims.info not working :(

Hii all! I've been trying to download mods for TS3 however I'm not able to because modthesims is down.. is this happening to everyone else? And does anyone have alternative download links to expanded-active-households-homes, [TS3] Random Sim Fixes 2.0 and The Sims 3 Smooth Patch 2.1

reddit.com
u/angelsacheu — 4 days ago
▲ 19 r/thesims3+2 crossposts

The Sims 3 CPU multiplier experiment and help needed.

Hello! I’ve been experimenting with the adjustedCPU calculation in The Sims 3’s GraphicsRules.sgr, and I noticed an unexpected change in how quickly textures loaded with all graphic settings turned up to their maximum (except edge smoothing).

——/——

Disclaimer:

This does not overclock the actual CPU or make the physical processor faster. It only changes the CPU-performance value that the game calculates and records in DeviceConfig.log, possibly resulting in slight performance improvements while in live gameplay. Speculation of desired outcome may be due to adjustedcpu speed being reported in an unknown coding reference yet to be discovered or widely published by the TS3 community as tested.

——/——

The Test:

My DeviceConfig showed a CPU Speed of 3072, an Adjusted CPU of 3696, and a CPU rating of 4/Uber (I had to force this cpu class tier, as it was originally marked as a 3). By “default” the graphicsrules file multiplies my CPU Speed by 1.3334 then subtracts 400. Found in the section below:

“seti adjustedCPU $cpuSpeed
if ($cpuCount >= 2)
if ($pentium4)
seti adjustedCPU (round($adjustedCPU \* 1.1667))
else
seti adjustedCPU (round($adjustedCPU \* 1.3334))
endif
else
seti adjustedCPU (round($adjustedCPU \* 1))
endif
if ($osMajorVersion >= 6)
seti adjustedCPU (($adjustedCPU)-(400))
else
seti adjustedCPU $adjustedCPU
endif”

Editing the graphicsrules file, I first removed the old 400-point Windows penalty, bringing the Adjusted CPU value to 4096. Once live gameplay was tested and visually unaffected in terms of negative performance, with the adjustedcpu value of 4096 being reported in deviceconfig, I then began increasing the multiplier.

At a multiplier of 2, the game remained smooth and texture pop-in seemed slightly faster. At 4, texture loading seemed progressively faster, yet still yielding very minor improvements to the speeds of object rendering of mold/models, then each of their textures. Increasing it to 8 produced little to no additional improvement over 4.

I also tested a ridiculous multiplier of 20,000,000,000, which caused the value to overflow and appear as -2147483648. For my reported CPU Speed of 3072, the largest whole-number multiplier that kept the calculated result below the signed 32-bit integer limit was 699,050. That produced an Adjusted CPU value of approximately 2,147,481,600, and texture pop-in again appeared noticeably fast during testing. Object molds/models, then their textures still remained with noticeable lag lasting a few seconds despite reported improvement.

I am not claiming that an enormous number magically gives the game more processing power to communicate with. My system was already classified as Uber, so increasing the value had no effect on the basic CPU tiered ratings of 1-4. Another part of the engine may reference adjustedCPU speed, but the difference could also come from cached textures, repeatedly loading the same save, or ordinary testing variance/phenomenon from the higher adjustedcpu speed. Nonetheless, tests were conducted on an existing game save, with objects loading faster regardless of caches being cleared through Regul save cleaner or not.

Would be interested to see if anyone else notices similar improvements.

——/——

My current specs:

I am playing The Sims 3 on a Lenovo Legion Pro 5i with an Intel® Core™ Ultra 9 275HX Processor (E-cores up to 4.60 GHz P-cores up to 5.40 GHz), 32 GB DDR5-6400MT/s (CSODIMM) - (2 x 16 GB), Solid State Drive 1 TB SSD M.2 2242 PCIe Gen4 TLC, NVIDIA® GeForce RTX™ 5070 Ti Laptop GPU 12GB GDDR7.

All graphic settings found in the game’s options menu are turned all the way up. Edge smoothing is off. Object hiding is off. Advanced Rendering and Animation Smoothing is on.

——/——

Other quality vs performance tweaks and mods:

Before this test, I have played around with various values in graphicsrules and downloaded every notable mod to increase the performance and quality of The Sims 3, yet i still experience lag when it comes to lots being triggered to load with their active level of detail (LOD), objects loading on their lots (grey object molds/models then textures popping in), the camera panning faster than distant objects loading, and slight hitching with camera movement.

The biggest annoyance is the objects loading slowly… I hate having to wait for the gray furniture to finish being upholstered, regardless if it only takes a few seconds.

In graphicsrules, I have…
1.) tweaked graphicsrules texturememory to both 4096 and 8192, finding that 8192 tends to be more stable with objects loading fairly decent and no visual glitches.

2.) tweaked graphicsrules high texture quality, changing texturesizethreshold 2048 to both 1024 and 4092. No major performance changes between 1024 and the default 2048. Objects seemed to load slightly slower with the default 2048 changed to 4192, but loaded more objects at one time. Texturesizethreshold was reverted to 2048.

3.) tweaked graphicsrules high texture quality, changing rttsizesmall and rttsizelarge from their default values of 256 and 512. Rttsizesmall and its default value of 256 increased to 512 showed some negative impact on objects rendering. Rttsizelarge and its default value of 512 increased to 1024 showed little to no negative impact. Rttsizesmall was reverted to 256, rttsizelarge reverted to 512.

4.) Tweaked graphicsrules high texture quality, changing TrilinearEnabled and AnisoEnabled to false. I use the settings through my nvidia control panel for gpu optimization.

5.) tweaked graphicsrules very high simquality, changing CASLightMapWidth from default 1024 to 2048. No performance changes. CASlightmapwidth was reverted to 1024.

6.) tweaked graphicsrules very high simquality, changing CASRenderTargetSize from default 2048 to 4096. Not sure if due to existing save file or high quality default replacement cc, but default 2048 caused visual glitching primarily of default hair replacements.

7.) tweaked graphicsrules very high simquality, changing the RenderSimTextureSizes from default 2048, 2048, 512, 12 to 2560, 2048, 512, 12 and 2560, 2560, 512, 12 and 2560, 2048, 1024, 512, and etc., for increased rendering of sim level of detail during live gameplay. Major visual glitching occurred with all changed values, resulting in clay-like poor resolution sims being shown in the world and sim portrait seen in the UI click-bubble popup. RenderSimTextureSizes were reverted to default 2048, 2048, 512, 12. However changes to the RenderSimLODDistances are still viable in exchange for negative performance impacts and possible large memory crashes.

8.) tweaked graphicsrules resourcegroup resources memCacheBudgetValue, increasing default value to 3900000000. I saw this somewhere during one late night of game research, noticed performance improvements.

9.) tweaked graphicsrules high lighting quality, changing shadowmapsize default value to 4096. No performance impact noticed.

10.) tweaked graphicsrules high lighting quality, changing interiorlightprobecount default value to 20. Lighting takes a longer to fully load into a room but does make visual quality improvement.

11.) tweaked graphicsrules high general reflections, changing WaterReflectionAreaThreshold from its default value to 50. No major performance impact but does makes visual quality improvement.

In terms of notable performance mods, I have downloaded…
1.) NRAAS master controller, overwatch, errortrap, relativity, etc., pretty much very mod they have. One major performance impact other than overwatch and errortrap is the relativity mod! Slowing down the world time to 1/2 - 2/3 allows slightly more headroom for gaming simulations to take place. Think slower time, slower tasks, less to do actions, less possibilities for multiple sims to find something to do at once and so quick.
2.) The Sims 3 Setting Setter (S3SS) and Smooth Patch Package file. I normally set my ticks per second (TPS) to 960, and my frames per second to 60. I have nearly every performance setting on, including the experimental ones like the GC’s. I turned off the uncompressed compositor textures since using TurboTravel again… not sure there is much point and might cause computing bloat.
3.) DXVK. People swear by it so I tried it again. I put my maxavailablememory to 8192 and texturememory to 512. Yes, I know texturememory is recommended at 100 but noticed improvements with 256 and 512 since using TurboTravel.
4.) TurboTravel. This is less well known but made major improvements on my old laptop with a dual pentium 1.8 processor and integrated hd gpu. This application essentially decompresses all of the games core package files found in each of the EP folders. The idea behind this, from what I gathered, is by decompressing all the world assets and objects, your cpu does most of the major processing when first loading your save files.
5.) OhRudi’s less space routing mods. Your sims get less stuck, causing less back up on the game simulation.

——/——

Personal Rant:

Please add your own comments into the mix, but EA seriously needs to release a 64bit version of The Sims 3 for windows. While I know the Mac 64 version has its own problems, the 32bit architecture is the games biggest hindrance. The common crashing from the memory load of default uber settings is not just a bug, it’s indicative that the game needed to be optimized before even being sold and needs it so much more now that high quality cc and gaming rigs are more than capable than the actual game itself.

Considering the only reason why The Sims 3 exists as a 64bit for mac is because of sales and profit vs technology compatibility, I am surprised that EA is still able to sell The Sims 3 for Windows PC devices. Other than the minuscule headroom of default uber settings against memory load crashing, the game was never updated to include new CPU and GPU’s, or even a better way to classify future ones.

The consumers who purchase The Sims 3 must rely on third-party, gaming community sponsored, aftermarket, and outside the means of original manufacturers/developers intended modifications in order for the game to launch, properly recognize computer components for normal gameplay not outside the consumers respective technology, and optimize its ability towards memory reading/writing and/or caching to prevent memory load crashing.

Not only did EA abandon its manufacturing/developer duty to ensure a properly functioning product unless otherwise noted long before technology outpaced sims 3 and EA fully switched over to ts4, most of their current expansions are simply piecemeal concepts of The Sims 3, featured 1 and 2 objects every so often, just available for much less stuff and more money…

With the craze behind inzoi and paralives, I really just think their gaming success is where EA fell flat between The Sims 3 and The Sims 4. Each game has their pro’s and con’s. Sims 3 was the peak of crazy fun real life gaming placed into an open world, never tapping into a 64bit architecture that could’ve led it to become even more iconic than a few years.

The Sims 4 closed gamers back to their neighborhoods, going against the whole original release behind its prequel that people leave their house to live life, tapping into 64bit technology to make visually better textures and animations; the exchange also being that consumers are ripped off to everything the community was once offered for their money, making their gamer experience extremely pay-to-play with more transactions with less stuff offered. Seems to be more geared towards Create-a-sim and Build/Buy rather than live gameplay…

Inzoi is really what the sims 3 could’ve been with an open world experience, just hyper realistic and with the oversimplification of life gaming seen with the Sims 4. Once you get to live gameplay, it’s not uncommon to get bored after so long. Also, why do we have an AI texture creator? Regardless of local or not, let’s really think about the rise of AI dependency within the gaming industry on both the creators and gamers side of things.

Paralives is giving the immersion that the sims 3 offered in live gameplay, but doesn’t feature much craziness. It picks up better on the diverse wants of gamers when it comes to building. In versus to Inzoi, it’s a more wholesome life game rather than hyper real.

——/——

ANYWAYS lol
I would love to hear the opinions, advice, and other things people have done to make the sims 3 so much better, especially anything towards object rendering! Feel free to ask questions also.

reddit.com
u/Silly_Community3596 — 6 days ago
▲ 1.5k r/thesims3+1 crossposts

Agnes Crumplebottom - The Movie Poster

Full movie coming soon on TwoSimsLight (Already uploaded the teaser-trailer).

u/Old-Mousse6360 — 12 days ago

Object rendering lag. Gray Furniture!

I am playing The Sims 3 on a Lenovo Legion Pro 5i with an Intel® Core™ Ultra 9 275HX Processor (E-cores up to 4.60 GHz P-cores up to 5.40 GHz), 32 GB DDR5-6400MT/s (CSODIMM) - (2 x 16 GB), Solid State Drive 1 TB SSD M.2 2242 PCIe Gen4 TLC, NVIDIA® GeForce RTX™ 5070 Ti Laptop GPU 12GB GDDR7.

All graphic settings found in the game’s options menu are turned all the way up. Edge smoothing is off. Object hiding is off. Advanced Rendering and Animation Smoothing

I have played around with various values in graphicsrules and downloaded every notable mod to increase the performance and quality of The Sims 3, yet i still experience lag when it comes to lots being triggered to load with their active level of detail (LOD), objects loading on their lots (grey object molds/models then textures popping in), the camera panning faster than distant objects loading, and slight hitching with camera movement.

The biggest annoyance is the objects loading slowly… I hate having to wait for the gray furniture to finish being upholstered, regardless if it only takes a few seconds.

———

In graphicsrules, I have…
1.) tweaked graphicsrules texturememory to both 4096 and 8192, finding that 8192 tends to be more stable with objects loading fairly decent and no visual glitches.

2.) tweaked graphicsrules high texture quality, changing texturesizethreshold 2048 to both 1024 and 4092. No major performance changes between 1024 and the default 2048. Objects seemed to load slightly slower with the default 2048 changed to 4192, but loaded more objects at one time. Texturesizethreshold was reverted to 2048.

3.) tweaked graphicsrules high texture quality, changing rttsizesmall and rttsizelarge from their default values of 256 and 512. Rttsizesmall and its default value of 256 increased to 512 showed some negative impact on objects rendering. Rttsizelarge and its default value of 512 increased to 1024 showed little to no negative impact. Rttsizesmall was reverted to 256, rttsizelarge reverted to 512.

4.) Tweaked graphicsrules high texture quality, changing TrilinearEnabled and AnisoEnabled to false. I use the settings through my nvidia control panel for gpu optimization.

5.) tweaked graphicsrules very high simquality, changing CASLightMapWidth from default 1024 to 2048. No performance changes. CASlightmapwidth was reverted to 1024.

6.) tweaked graphicsrules very high simquality, changing CASRenderTargetSize from default 2048 to 4096. Not sure if due to existing save file or high quality default replacement cc, but default 2048 caused visual glitching primarily of default hair replacements.

7.) tweaked graphicsrules very high simquality, changing the RenderSimTextureSizes from default 2048, 2048, 512, 12 to 2560, 2048, 512, 12 and 2560, 2560, 512, 12 and 2560, 2048, 1024, 512, and etc., for increased rendering of sim level of detail during live gameplay. Major visual glitching occurred with all changed values, resulting in clay-like poor resolution sims being shown in the world and sim portrait seen in the UI click-bubble popup. RenderSimTextureSizes were reverted to default 2048, 2048, 512, 12. However changes to the RenderSimLODDistances are still viable in exchange for negative performance impacts and possible large memory crashes.

8.) tweaked graphicsrules resourcegroup resources memCacheBudgetValue, increasing default value to 3900000000. I saw this somewhere during one late night of game research, noticed performance improvements.

9.) tweaked graphicsrules high lighting quality, changing shadowmapsize default value to 4096. No performance impact noticed.

10.) tweaked graphicsrules high lighting quality, changing interiorlightprobecount default value to 20. Lighting takes a longer to fully load into a room but does make visual quality improvement.

11.) tweaked graphicsrules high general reflections, changing WaterReflectionAreaThreshold from its default value to 50. No major performance impact but does makes visual quality improvement.

In terms of notable performance mods, I have downloaded…
1.) NRAAS master controller, overwatch, errortrap, relativity, etc., pretty much very mod they have. One major performance impact other than overwatch and errortrap is the relativity mod! Slowing down the world time to 1/2 - 2/3 allows slightly more headroom for gaming simulations to take place. Think slower time, slower tasks, less to do actions, less possibilities for multiple sims to find something to do at once and so quick.
2.) The Sims 3 Setting Setter (S3SS) and Smooth Patch Package file. I normally set my ticks per second (TPS) to 960, and my frames per second to 60. I have nearly every performance setting on, including the experimental ones like the GC’s. I turned off the uncompressed compositor textures since using TurboTravel again… not sure there is much point and might cause computing bloat.
3.) DXVK. People swear by it so I tried it again. I put my maxavailablememory to 8192 and texturememory to 512. Yes, I know texturememory is recommended at 100 but noticed improvements with 256 and 512 since using TurboTravel.
4.) TurboTravel. This is less well known but made major improvements on my old laptop with a dual pentium 1.8 processor and integrated hd gpu. This application essentially decompresses all of the games core package files found in each of the EP folders. The idea behind this, from what I gathered, is by decompressing all the world assets and objects, your cpu does most of the major processing when first loading your save files.
5.) OhRudi’s less space routing mods. Your sims get less stuck, causing less back up on the game simulation

reddit.com
u/Silly_Community3596 — 6 days ago
▲ 244 r/thesims3+1 crossposts

well this is new

a meteor crashed into my sims work and killed three of her co-workers 😂😂 Never seen that before. only reason my sim wasnt killed was because she was late coming out of work.

u/Vegetable_Medicine81 — 11 days ago

Showtime gigs make relationship decrease

My sim is a singer, and everytime she performs in a gig, and one of my other sims watches the show, their relationship decreases. Afterwards when they talk, the singer feels insulted and the sim who was in the audience gets an option to apologize.

I have seen people discuss this, and someone had a theory that it happens when the audience makes a song request and the singer fails to do that request. But wouldn't that make the singer the one to apologize instead of the sim in the audience apologizing?

Also I have made sure that the sim in the audience doesn't make any song requests and made sure only reacts positively to the song, but the singer still gets insulted.

I have also downloaded a mod that's supposed to stop the relationship decreasing by stopping requests, but that mod made by game glitch so that all of my gigs were interrupted all the time so I had to remove that mod.

Is there anyway else to fix this annoying issue?

Edit: the mod wasn't the cause of the glitch, so I'll try it out

reddit.com
u/NerdySide — 9 days ago
▲ 7 r/thesims3+1 crossposts

Sims 3 All DLCs (ultimate collection) Mac

Hi everyone!

I've put together a Wineskin wrapper for The Sims 3 on Mac that includes every DLC available. It was surprisingly hard to find a working one, so I decided to build it from scratch myself.

This is actually a windows copy wrapped and translated to work on Mac, that’s why it was so difficult to find exactly what I wanted.

Since so many people did not know how to install it, here’s a video I’ve made explaining everything.

VIDEO HERE!!

It was taken down by YT, but now it’s solved. It’s private, therefore it’s only available from this link above 👆.

Like and follow for more!

Now you can ask for the next game here!!!

Contributions here ko-fi.com/axxlpc
Thanks for your contribution!

Download link.

Enjoy it!!
===================EDITS===================

EDIT 1: if you’re using an Intel Mac

I’d recommend using bootcamp to install windows and run it natively (it needs around 50GB free). Here’s a video.

EDIT 2: if you’re unable to install mods:

  1. If you already know the mods location, make sure you have the resource.cfg file (available here and basically all over the Internet). The lack of this file prevent the game from reading the mods! If you don’t know the folder’s location, keep reading.

  2. Open Terminal and type exactly:

  3. sudo /usr/libexec/ locate.updatedb

  4. Press Enter and wait for it to finish.

  5. Then type:

  6. locate Saves | grep -i sims

This command will list all the locations where a "Saves" folder exists, helping you find where your mods should be installed. For example, if you get a path like:

/Applications/Los Sims 3.app/Contents/SharedSupport/ prefix/drive\_c/users/Public/Documents/Electronic Arts/ Los Sims 3/Saves

then your Mods folder should go here:

/Applications/Los Sims 3.app/Contents/SharedSupport/prefix/drive\_c/users/Public/Documents/Electronic Arts/Los Sims 3/Mods.

If the “Mods” folder does not exist, you can just create it and it should work, but bear in mind the folder **must** be named exactly “Mods”, respecting the uppercase, lowercases and with no spaces.

EDIT 3: if you’re unable to open it even after xattr:

In some privacy setups, you may also need to go to System Settings > Privacy and Security > scroll down > Open Anyway. After that, fully restar your Mac (uncheck the “open windows again after restarting” option).

u/Mortgage-Mysterious — 12 days ago

Any help is appreciated

Hello, for about a year now everytime I try to start my game this pops up. I’ve deleted all my cc, deleted and redownloaded the game so many times, it still does this. I played this games for years on end and I miss playing it so much. Is there anything I can do or should I just accept I’m probably never gonna be able to play the game again? :( Any help or advice is really appreciated. I’m not very tech savvy.

u/maybug1305 — 11 days ago

Problems at installation

Hi! So I own the physical games and the thing is that the base game works perfectly fine, but when I have to get the expansion packs, it ask for the update, but it doesn't update as Origin isn't working anymore. And I don't have the games on my EA account as the migration of platform killed my account and had to make a new one where it doesn't let me put the key of the game because it doesn't count as me owning it because "second hand" , so idk how to make the game update so I can play my expansion packs.

Should I get it the other way (🏴‍☠️) or what should I do?

reddit.com
u/TermoMixed — 9 days ago
▲ 38 r/thesims3+2 crossposts

What actual movies these Brigeport Movie Theater Posters are related to ?

Help Me find the titles of the actual movies, please

u/MermanMax — 14 days ago