I'd rather be in outer space πΈ

pixel skylines
The Bowery Presents
2025 on Tumblr: Trends That Defined the Year

NASA
Sweet Seals For You, Always
trying on a metaphor
Show & Tell
Sade Olutola
Today's Document
Lint Roller? I Barely Know Her

Jar Jar Binks Fan Club
Cosmic Funnies
we're not kids anymore.
Not today Justin
Claire Keane
KIROKAZE

blake kathryn

Andulka

seen from Mexico

seen from United Kingdom
seen from United States

seen from United States

seen from Malaysia

seen from United Kingdom

seen from Germany
seen from United States
seen from United States
seen from Mexico
seen from Albania

seen from Slovakia
seen from Italy

seen from United States

seen from United States
seen from United Kingdom

seen from TΓΌrkiye
seen from Colombia
seen from United Kingdom
seen from United States
@bugjartimedecayoff

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch β’ No registration required β’ HD streaming
GoS reupload time #4: This was my Christmas in July 2013 gift to Dikatze. Here you'll find a bunch of horns as accessories from Skyrim, a retexture/alpha edit of Raon M41, some walls, some eyes (which I re-sclera'd here), some houseplants converted from Oblivion and a helmet converted from Fallout New Vegas (PLEASE BE WARNED: the reflection on this only works if you don't have seasons, which I didn't at the time. it's been on my projects list for years to make another reflection I'm satisfied with but haven't got around to it yet. Still looks alright without though). All meshes included.
THAT SAME OLD NOTE AGAIN: THIS IS OLD CC. The file names are full of unnecessary punctuation such as brackets, dashes and spaces (which was the style at the time). You're probably going to want to remove all of that for optimal file loading times (would recommend a bulk file rename tool). One day I'll get around to replacing the uploaded files but today is not that day.
GET IT HERE!
Have you ever wondered why Bodyshop makes your PC work so hard?
BODYSHOP HAS NO FPS LIMIT
With limited frame rate, Bodyshop only puts a strain on PC when it loads CAS content. If your GPU fans go significantly faster the entire time you have Bodyshop open, then FPS is very likely way too high.
It's similar case for TS2 game - but FPS also depends on your system / PC /Laptop and the way you run TS2.
β€ To check FPS in the game, use a shortcut: Ctrl + Shift + S to bring up FPS HUD. FPS is displayed right in the upper left corner.
Tip: if FPS is changing too fast, take a few screenshots so you can read FPS from those
β€ If you set a limit to 60 FPS, that tells CPU/GPU to produce 60 game frames per second. This is the sensible number for TS2. Without FPS limit, your hardware is trying to put out frames as fast as it possibly can, heating up and using unnecessary amounts of energy.
The Sims 2 engine was not designed to run any higher than 100 FPS
β€ When you play The Sims 2 with TS2 RPC & borderless window, Windows Desktop Manager usually handles frame rates. Same for windowed TS2 Legacy edition. This is thanks to Vsync*, which forces desktop's default refresh rate on game window.
*In case of high-refresh gaming monitors / laptops, FPS limit imposed by Vsync may not be low enough for TS2.
Explaining the Pink Soup (In Layman's Terms)
Hi everyone!
First off, I just wanted to say thank you for all of the positive feedback I've received over the past few days β I'm really pleased to see that my mod seems to have been effective for so many of you!
I am aware that my dissertation/thesis is really rather technical, filled with lots of academic/flowery language, and probably quite overwhelming to try and understand if you're lucky enough to have not studied computer science, so I wanted to attempt to break the key parts of it down into the simplest terms possible, to hopefully help answer some of the questions I've seen people have.
What is the pink soup?
The pink/purple strobe lighting we all know and love is 1 of 4 uniquely coloured shaders the game uses to indicate a specific type of error has occurred when trying to display something on-screen. The 3 other colours it uses (you've likely seen at least one of them) are red, blue, and yellow.
These shaders serve two main purposes:
To let you know something has gone wrong in an obvious (albeit obnoxious) manner.
To allow the game to keep running in spite of whatever error has happened (otherwise it would just crash).
Internally, the error that the pink soup represents is known as a "material parsing failure", i.e. the game has failed to understand some piece of material data (textures, rendering properties etc.) about an object it is trying to render.
Part of the process the game goes through before rendering an object to the screen is checking that its data only contains specific characters (numbers, letters, and certain symbols) β an example of when this would fail and trigger the pink soup would be if the game came across a random emoji during these checks.
What does 32-bit/64-bit mean?
A 'bit' is just a single digit of a binary number. All you really need to know is that a 32-bit number is a binary number that is 32 digits (bits) long, with the largest binary number possible being 32 consecutive 1s (1111111β¦).
I'm not going to bore you to death and show you how to convert binary numbers to decimal, so you'll just have to believe me when I say that 32 consecutive 1s in binary is equivalent to 4,294,967,295 in decimal.
4.2 billion might seem like a pretty high value to be able to represent, but if I said this is roughly equal to 4GB, you might be able to start to see how 32-bit computers/software could be a bit (no pun intended) limited memory-wise. For comparison, the largest decimal value a 64-bit binary number can represent is 18,446,744,073,709,551,615, or just under 18.5 exabytes (EB)!
But what if I wanted to represent the number 5 billion in 32-bit binary? Here's the fun thing β you can't. If you tried, the binary number would 'wrap around'. As in, it would max out at 32 consecutive 1s before resetting back to 0 and continuing to count up until it reached the binary value of 705,032,705 (5,000,000,000 - 4,294,967,295 = 705,032,705).
This is what is meant when we say that The Sims 2 can only use up to 4GB of your computer's memory (RAM) β it is physically unable to access/store data in more than 4,294,967,296 different memory addresses (it's 4,294,967,296 because the range of possible addresses would be 0 to 4,294,967,295).
If you're not sure what I mean when I talk about 'memory addresses', you can think of the concept as being like your home address (your house number, street name, and postal/zip code). It's just the location a piece of data lives at in memory so the game knows where to find it if it needs to use it for something.
Once the game has run out of memory addresses to use to store things, it will crash. The only way this could be fixed would be if EA magically decided to rewrite the game's engine to be 64-bit, thus allowing it to use an exponentially larger number of addresses.
Why does the pink soup happen?
This is where things get interesting. While the game is loading, the material data for the objects in your neighbourhood/lot is stored at individual addresses in your computer's memory so it can be processed.
Part of this processing involves the game taking all of the shader code found in the Materials.package file and linking the relevant shaders to the relevant pieces of material data of an object (e.g. a reflection shader would be linked to the glass part of a mirror object), creating shader 'packages' for the whole object. Again, both these packages and the information that links them to the object are also stored in memory.
As you can probably imagine, if you have a large number of different objects in your hood/lot (particularly more complex/detailed objects with many rendering properties), the amount of free memory the game has to use to keep storing things starts to decrease FAST.
Back in ye olden days of 2004 when The Sims 2 was released, 32-bit was the most commonly used architecture for consumer-grade hardware and software. Despite its known drawbacks, the 4GB memory restriction was not really a huge issue, as the technical limitations of the time meant your parents' PC would likely catch fire and explode long before this level of memory usage could be reached in-game.
Windows XP (the operating system the game was primarily developed for) was also a 32-bit operating system. The way XP handled the 4GB memory limit was simple:
2GB was given to the kernel (the core of the operating system).
2GB was given to applications (i.e. The Sims 2).
This is why it is commonly recommended to apply what is known as a '4GB patch' to the game, as by default, it still thinks it's living in 2004 and is only allowed to use 2GB of memory β the 4GB patch therefore permits the game to use the full 4GB of memory it is able to support.
So, where does the pink soup come in to this?
Basically, there is a piece of logic within the game's code that is used during the process of linking shaders to material data described above. All this logic does is check whether the material data it is being given is stored at a memory address above or below the 2GB mark, presumably some kind of relic of the Windows XP days.
For whatever reason (either due to a bug or intentional design), for data stored above 2GB, the game performs additional checks which will ALWAYS FAIL, and the game will treat this data as being malformed/invalid, refusing to link any shaders to it.
Hopefully, the chain of causality should now be clear:
The capabilities of our hardware has increased dramatically in the past 20+ years.
We've all been applying a 4GB patch to the game to allow it to make use of more of our RAM.
We've also all been installing a load of cool custom content and creating highly decorated hoods/lots because our fancy graphics cards can handle them easily.
All of these objects are causing memory usage to quickly surpass the originally intended 2GB range.
The game is considering any data for the objects stored above this range to be invalid and refusing to do anything with it.
The pink/purple error shader is instead being applied to these objects because the game thinks there is something wrong with their material data.
In conclusion, The Sims 2 is confused and elderly, frequently soiling itself when presented with high-tech information from the far off future of the 2020s that its puny 2004 mind can't possibly comprehend.
What are the differences between v1/v2 of the mod?
Both versions of the mod patch the same piece of logic in the game's code, but with differing approaches.
With v1, the additional (and always failing) checks the game performs on material data stored above the 2GB mark are essentially patched out, meaning they are not executed and shaders will always be correctly linked to them, regardless of their location in memory. This is great, as you should never see any pink soup that would usually be triggered by these failed checks. Consequently however, the game will give you no indication that it is running out of memory, except for when it inevitably crashes once all free memory has been used up.
On the other hand, v2 makes use of these faulty checks. Instead of removing them completely, they are repurposed to warn you of high memory usage, with the game not performing these checks until material data starts being stored above the 3.5GB mark. This means you will still see pink soup, but only once memory usage exceeds 3.5GB. This is intentional, and is meant to be a trade-off between allowing the game to correctly process more data in memory, but also still letting you know that a crash may be imminent some time after the pink soup appears, giving you enough breathing room to save and restart the game before this happens.
To illustrate these differences better, here is roughly what the code is doing in the vanilla game, v1, and v2 of the mod:
Vanilla:
if memory address <= 2GB everything is fine, continue as usual if memory address > 2GB pink soup time!
V1:
if memory address <= 2GB everything is fine, continue as usual if memory address > 2GB everything is fine, continue as usual
V2:
if memory address <= 3.5GB everything is fine, continue as usual if memory address > 3.5GB pink soup time!
Which version should I choose?
There's no correct option, but if you play with a lot of CC or with highly decorated hoods/lots, I would probably recommend starting with v2, only for the so-called 'safety' reasons I outlined above.
I personally use v1 because I play very vanilla, so I know memory usage should never really get that high. If you're like me, or you just don't care about potential crashes and want to be rid of the pink soup, then v1 of the mod is the one for you :)
I know people likely still have many questions, so I've enabled the 'Ask me anything' option on this blog - feel free to use it!
Thanks again,
Will
Sims 2 Object Limit Fix
Soooo... I didn't intend for two highly requested fixes for The Sims 2 to drop within the space of a week and a half, buuuut...
Here's where you can download an experimental patch to fix the so-called 'object limit'!
https://github.com/spockthewok/TS2ObjectLimitFix
(Ultimate Collection only at the moment, I'm afraid).
The good news is:
Both @lordcrumps and @teaaddictyt have tested it with stupidly large CC folders and report that it works.
There isn't a dissertation the length of Tolstoy's 'War and Peace' you need to read through to understand wtf is going on.
The crashing wasn't caused by some hardcoded object limit at all! (That I know of).
An explanation of the issue for programmers:
And for everyone else:
The code for the Build/Buy menu was missing basic checks to confirm that the data it was trying to do things with was actually valid. No, I'm not joking.
Basically, it appears that all of the objects you can buy in the game are stored in something you can think of as being like a big, long list, which grows in size with the more custom objects you have.
The only purpose of the code that this plugin patches is to sort the items in the list into some kind of order. This is done by assessing if the value of the previous item in the list is larger than that of the item currently being looked at, and swapping their position if this is true (also known as an insertion sort).
In short, the game wasn't asserting that the data it was about to compare for sorting was valid before accessing it, and then promptly blowing up when it tried to do so and discovered it wasn't.
I imagine that the odds of the game making an oopsie and dumping some funky data into the list increases with the number of objects it is having to process - this might be why this issue only presents itself to those using multiple GB of Build/Buy CC. It was much easier to patch the code encountering the bad data within the list than to try and hunt down the mysterious culprit putting the data in there to begin with, so this is all the information I have at the moment unfortunately.
Either way, one of the first things you're taught when learning to code is to ALWAYS check that the data you're operating on has been initialised (i.e. it holds some kind of value). I guess someone at Maxis must have skipped that lecture :D
Is the 255 objects per subcategory limit theory true?
The Downloads folder I was using for testing had ~672 objects in the Deco/Misc subcategory (Maxis objects included). With the patch, I can freely navigate throughout the entire subcategory with zero crashes, so I guess not?
What about the whole OBJD limit thing?
People have varying beliefs of what the limit on OBJDs might be, but HCDU reports my Downloads folder had an OBJD count of 20,787. Again, without the patch the game would crash when switching categories in the Build/Buy catalogue, with the patch, no crashing.
If you want to hear my opinion on whether such a limit exists, watch this video.
Do I even need this patch if I don't use much CC?
As it adds some fairly important crash-prevention checks to part of the Build/Buy menu's functionality, I'd probably recommend using it anyway, just to be safe - we all know how much this game loves to crash!
Aaaah! I'm still getting crashes with the patch!
I'm aware that a few of you CC addicts out there have Downloads folders larger than the total size of everything ever uploaded to the internet, so if you still experience crashing in Build/Buy mode with this patch, please take a look at the mod's GitHub page and send me over the information requested there. Fingers crossed that shouldn't happen, but if it does, I'll try my best to investigate :)
Anyway...
Will
(I wish I had looked at this for my dissertation, as it was literally only a day's work).

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch β’ No registration required β’ HD streaming
Date flowers expire
Are your serial daters running the risk of drowning in flowers? Does it not seem quite right to just sell them? Do you question why there's even a market for second hand date roses in the sims world? Well boy does my sim Maja Sernman have the solution for you! The Sernman Group is opening a florist near you where you too can procure 100% authentic flowers that actually age! Insect-proof, compost friendly, bio-degradable flowers for you, and you, and all of you!
Inspired by @kashmiresims, and with a little help from some friends, I bring you my first mod of 2026.
Features
- After 7 days flowers will go old, using a new texture by Epi. By default a dialogue pops up, and camera will zoom to show to the rose.
- A new interaction to throw away flowers, that routes to the nearest trash can. By default the sim will think about who sent the rose, and roses can be thrown away anytime.
- Storytelling debug interactions for setting recipient/sender, make fresh/expire, pick text option (see below)
- Buyable date rewards, which thanks to debug interactions can be set up correctly. Now your sim can give extra, if they want to! You'll find them in deco/misc, prices are 5, 5, 15 and 55 simoleons (unchanged from original).
- Optional text default! Maxis intended date rewards to have 4 possible writings, but then they just duplicated the same text. I restored this to the intended mechanic and spruced up the writing. To give you a variety in style and personality, @kashmiresims @episims @nikkasimms and I have all written one entry for each of the four different date rewards with writing (bouquet, single flower, love letter, hate letter). Edit friendly, you can add more text options if you want to.
- Highly BCON tunable. Features can be turned on or off, some are active by default, some are not. See read me for more info.
NOTE!!! This requires Date Rewards by Color Traits by Episims and PForestsims. It uses their base texture, and will look extremely weird without their mesh default. Must load after!! Roses will error on expiration if load order is wrong, which erases sender/recipient info, so please make sure you get load order right if you care about your existing roses. Debug interactions can restore if error did happen, if you know who sender/recipient were.
Download from simfileshare
Conflicts: Must load after color trait date rewards. Will conflict with anything that alters pie menu and dialogues of date rewards. Adds new code to date reward semi global. Use HCDU+ to verify if you have other mods that alter date rewards.
Credits: Kashmiresims for the wonderful idea to have roses go old, @pforestsims for their beautiful mesh and base texture that @episims did a great job turning aged. I am aware red roses don't look like this when dried out, but I wanted them to still look nice if a sentimental sim wants to keep them anyway and Epi was kind enough to do what I asked :3 Charmful, Nikka and Epi for helping me write new text. @lamare-sims and @tvickiesims for brainstorming with me at the start and helping me decide on dried out rather than rotten flowers :3
What a nice idea! They were kind of annoying once they starting building up, it's a great little detail to add.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch β’ No registration required β’ HD streaming
all charmed up!!
So you might have heard that a new prototype of The Sims was released. This one is a later release than the earlier 1998 prototype. This one is very similar to the '98 version with a few more elements added including Create-A-Sim and also the infamous brain HUD menu.
I do wonder, based on the families in the bin, if Michael Bachelor was actually Ross with a new first name and skin. That would be interesting. That would mean that Ross here is Bella's 'proto' brother.
This is 1999 CAS. You can pick the head, that's it. The only choices are the earlier cartoon-style sims (Duchess, Fritz, the Coloneal, etc) and Ross, Mercedes, and Samantha in the well-known Maxis style.
Very few objects added. Many of these items seemed to make it to the final release in some form or another. As far as live mode goes, sims are surprisingly intelligent. I'm actually unsure if they can die. Fire isn't an issue. No jobs yet but you can make money from the "work" option on the computer.
Notice the HUD, it's one of the most interesting features of this build. As the sim performs actions different sections of the brain light up or flash to show how the performed actions are affecting their 'brain'. It's an interesting concept but I'm really glad they didn't keep it. It's a little morbid.
THE SIMS 2 (2004) dev. Maxis
The Sims 3 original concept arts and design
TS2 lights
a bunch of tips for cc creators and anyone interested
To view the pic in full size on PC click it to open a popup image, then right-click on the image and open in a new tab
Pic above explains what's required for one lamp subset to lit up.
Do you need to know all that to make a TS2 CC light? Not really. You could just grab a well-functioning custom light and clone it. But if you wish to customise it, make a repositoried light etc, then you need to know what makes 'em tick ;)
Below you'll find some light making tips / troubleshooting.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch β’ No registration required β’ HD streaming
SUL SUL?! ππ₯
i put my fav divas from ts2 in a mobile phone ad for @ts2nostalgia-zine! if you haven't already, you can check out the flip book here! :D
Feebee's apartment. She is Rick's neighbour.