ObscurelyYoursTruly
Member
- Jan 29, 2019
- 124
- 1,220
- 279
your sim looks like itsmetroiHi all again today!
Here we go with another new sim for you made by me (Lara Mendez). I started making a vampire but at the end i finished doing an angelic girlwith a little bit of hotness! (you need Nisa Wicked Perversions MOD to have Pheromonal Flower trait used on sim
I played a bit her after making it and i love it shes cute as hell! at least for me)
As always i add all the CC used to make it. Enjoy!
Preview CAS:You must be registered to see the links
Download:You must be registered to see the links
View attachment 908243
View attachment 908235
To tell you the truth, I have no idea. However, spankz12 has a tutorial on his signature on how to find CC and if I recall correctly you could type whatever the name of what you are searching and add Dmca.gripe at the end? https://f95zone.to/threads/the-sims...-your-mods-and-finding-cc.56569/#post-3995596 However, like I said I'm not certain and spankz12 is the expert on this area.Is there a way to search Dmca.gripe?
These are a few of the creators that I follow:Looking for creators to look up for Uniforms/Outfits such as maid, nurse, that sort of thing. Already grabbed the ones in Mega but do you folks know of any other creator like Cosplay Sims or so forth that make a lot of one piece outfits/uniforms. Trying to piece together as much as I can of my old library. (not asking for the files but great if you wanna link em, just looking for ideas on who to look up)
Thnx.
No man you gave me more than enough to work with lol. Greatly appreciated. Some I knew already like Linx and Nitro but you got a few on there that are news to me. Will certainly go through the list and pillage away. Thanks again!These are a few of the creators that I follow:
BaddieSims -You must be registered to see the links
Bonita Sims -You must be registered to see the links
CIPHER -You must be registered to see the links
Grafity -You must be registered to see the links
kenzar -You must be registered to see the links
Kritical -You must be registered to see the links
Lynxsimz -You must be registered to see the links
NitroPanic -You must be registered to see the links
savagesims -You must be registered to see the links
Shake Productions -You must be registered to see the links
Simpliciaty -You must be registered to see the links
Slay Classy -You must be registered to see the links
trillyke -You must be registered to see the links
It would be difficult for me to fulfill your request since I would have to look through each individual page but you can do it if you feel like it.
This is what I was told replaced DWP.hi guys, sorry for my english, will there be any other patreon cc page? because as we all know yiff and down of patreon no longer exist, thanks greetings to all
You by any chance wouldnt happen to know where I could snag a few of Bonita Sims creations? Most are behind the paywall. Thx.These are a few of the creators that I follow:
BaddieSims -You must be registered to see the links
Bonita Sims -You must be registered to see the links
CIPHER -You must be registered to see the links
Grafity -You must be registered to see the links
kenzar -You must be registered to see the links
Kritical -You must be registered to see the links
Lynxsimz -You must be registered to see the links
NitroPanic -You must be registered to see the links
savagesims -You must be registered to see the links
Shake Productions -You must be registered to see the links
Simpliciaty -You must be registered to see the links
Slay Classy -You must be registered to see the links
trillyke -You must be registered to see the links
It would be difficult for me to fulfill your request since I would have to look through each individual page but you can do it if you feel like it.
Here is candysims' hair and her newest postAnyone have Curbs' halloween content from last month and/or candysims4's new Glow Hair? My Google attempts have been futile.
DWP hasn't been updated since July. Unless someone else recently took over I'm not sure it's being updated anymore.This is what I was told replaced DWP.You must be registered to see the links
Only a little bit, but I bet someone else can answer this better... Tuning is a pain in the ass so I avoid it as much as possible. What to do is familiarize yourself with each section of the xml and what can function in those sections, like for instance adding in "basic_extras" or better yet a tuning that has one already lets you call python from it and from there you have a better chance of sorting out what buffs to add to a sim based on situations or criteria. In tuning though the whitelist solution is using the testing category or whitelist and blacklist. That might work out better for you if you are unfamiliar with python scripting. Below is a super rough outline that will point you in the right direction. Actor is the sim that directs the action at TargetSim. Actor has the trait that makes them apt to tell dirty jokes where TargetSim has the trait that makes them embarrased by it. The buffs are assigned by the trait and the filter below does a check true or false weither this passes or not. And then you have to do a continuation or loot to add the embarrased buff. See in python I find it so much easier than this confusing shit lol. You loop through the sims traits using siminfo and if they have a trait that causes a sim to get embarrased then you give them that buff with sim_info.add_buff(tuning id)anyone who makes custom traits or does any xml modding willing to help me out?
<L n="test_globals">
<V t="sim_info">
<U n="sim_info">
<V n="species" t="specified">
<U n="specified">
<L n="species">
<E />
</L>
</U>
</V>
<E n="who">TargetSim</E>
</U>
</V>
<V t="sim_info">
<U n="sim_info">
<V n="ages" t="specified" />
<V n="species" t="specified">
<U n="specified">
<L n="species">
<E />
</L>
</U>
</V>
<E n="who">Actor</E>
</U>
</V>
<V t="buff">
<U n="buff">
<V n="whitelist" t="enabled">
<L n="enabled">
<T>123456<!--put buff for trait they have here like rude--></T>
</L>
</V>
</U>
</V>
<V t="buff">
<U n="buff">
<L n="blacklist">
<T>789012<!--put buff for trait they have here like idk easily embarrased--></T>
</L>
<E n="subject">TargetSim</E>
</U>
</V>
</L>