merkle Posted September 22, 2022 Posted September 22, 2022 (edited) I've created a photography retail shop, but the photos all sell for the same 10 simoleans instead of the actual price. I've found a python script to fix this (below), but I don't know how to convert this to a ts4script file. Can anyone help? This should be a piece of cake for anyone who knows how to do this. from objects.game_object import GameObject from retail.retail_component import RetailComponent get_retail_value_original = RetailComponent.get_retail_value def get_retail_value(self: RetailComponent): obj: GameObject = self.owner if 'object_Photo_' in type(obj).__name__: return obj.current_value return get_retail_value_original(self) RetailComponent.get_retail_value = get_retail_value Update: Turns out this is pretty easy once you've got the python script. For anyone interested, there's a very easy tutorial: Edited September 23, 2022 by merkle
snomchan Posted September 23, 2022 Posted September 23, 2022 Does anyone have the latest blank blush overide for Nisas Wicked Perversions. My old laptop died and I could not recover any of my old sim files. I have a new laptop now and I downloaded the latest mods including Wicked Perversions. The thing is I can't find the newest blank blush overide file! The one on Nisa's page is from 2018 and it doesn't work as it's severely. I know a modder named Tlayer made/updated that mod, but when I went to their page I got a sorry page doesn't exist message. So I guess they quit. Does anyone have a copy of the most recent blank blush overide? Please help a simmer out if they can. Thanks in advanced
Sandatharius Posted October 4, 2022 Posted October 4, 2022 (edited) I'm trying to find a swimsuit, one-piece, thong bottom, that has the Playboy Bunny pattern as one of the meshes. I originally got it as part of a custom Sim I downloaded from here, but I moved to a new computer and don't seem to have it anymore. Edited October 4, 2022 by Sandatharius
junior55 Posted October 5, 2022 Posted October 5, 2022 Does anyone know what kind skintone is this? 1
Sandatharius Posted October 6, 2022 Posted October 6, 2022 I've also been trying to find parts of a Playboy Bunny costume. I have a one-piece black bathing suit, I have black pantyhose, black stilettos and I have the ears. But I'm still looking for the collar and cuffs. Anyone have any links?
Es.Ell. Posted October 18, 2022 Posted October 18, 2022 Is there any smart modders out there who can update or take over Control Any Sim mod by TitanNano? The mod was last updated on 12th of Jan, 2021. I really miss this Mod
monolexic Posted October 19, 2022 Posted October 19, 2022 (edited) Looking for adult pranks. Things like goosing, ass slap, honk a tit, cat calling, etc. completely detached from sex interactions. Bonus if the actions give chances at moodlets like flirty, angry, embarrassed, mischievous, and count as mischief interactions. edit: pantsing would be a good one, too Edited October 19, 2022 by monolexic
MrGrey Posted October 20, 2022 Posted October 20, 2022 Cemetery Mod? What I really miss from Sims 3 is the cemetery; one stop shopping for dead sims. . Otherwise you end up going all over the place trying to find an urn or a grave stone for that particular sim. How to make it adult.... hummm... I know! You make a deal with the ghost if you bring them back to life and and young again (spellcaster spell and potion) then they will be your sex toy for 2 weeks. Depending upon the attraction that the ghost has for the spellcaster, the reaction will range from enthusiastic agreement to "I'd rather be dead".
Jublionn Posted October 23, 2022 Posted October 23, 2022 I would like a mod for males, that pull their pants down and moon their butts at other sims. looking back seductively with a grin.
Es.Ell. Posted October 23, 2022 Posted October 23, 2022 Requesting a mod to control NON Household Sims
Longhammer717 Posted October 23, 2022 Posted October 23, 2022 Good day everyone! I'm wondering if there is any sort of Dom and Sub mods but for social and not just sex? Like a sissy boy being commanded by a Dom Man? Like being commanded to clean and do whatever the master desires? I'm hoping i'm explaining it right, pretty much a happy sex/house slave type of thing? Thank you for reading, and hope everyone stay's safe!
Nevely42 Posted October 27, 2022 Posted October 27, 2022 On 10/23/2022 at 7:59 PM, Es.Ell. said: Requesting a mod to control NON Household Sims I think ControlAnySim is still working on the newest patch. I've been using it without any issues
b1k1k Posted October 27, 2022 Posted October 27, 2022 Does anyone has dancing animation that will be override vanilla Sims4 dances or add to them?
Es.Ell. Posted October 27, 2022 Posted October 27, 2022 (edited) 5 hours ago, Nevely42 said: I think ControlAnySim is still working on the newest patch. I've been using it without any issues When Oct 11 patch came.....POOF. ControlAnySim stopped working for me. Wish someone would take it over or send me step by step instructions on how to create it for myself. Edited October 27, 2022 by Es.Ell. text 1
vale88 Posted October 28, 2022 Posted October 28, 2022 hey guys! can I ask about this moment? I don't know why, but nipples is looking like this (attachment). And with other clothes same problem.. Anybody know whats the problem?
Es.Ell. Posted October 28, 2022 Posted October 28, 2022 2 hours ago, vale88 said: hey guys! can I ask about this moment? I don't know why, but nipples is looking like this (attachment). And with other clothes same problem.. Anybody know whats the problem? Lakers seem to be causing lots of problems these days. Try an Areola you can as a tattoo, like Mikooi Sims Boobs Pack
Oops19 Posted November 3, 2022 Posted November 3, 2022 On 9/22/2022 at 4:58 AM, merkle said: RetailComponent.get_retail_value = get_retail_value Worst code ever. Has it been provided by mod creators whose mods break with every TS4 update? Copying the EA code 1:1 is a copyright abuse and then replacing a few lines of it may break other mods which rely on the EA code and if EA changes something this code will not be aware of this change and may cause exception files. Mod creators should write resilient, unbreakable mods but unfortunately there are only a few who actually do this.
merkle Posted November 4, 2022 Posted November 4, 2022 12 hours ago, Oops19 said: Worst code ever. Has it been provided by mod creators whose mods break with every TS4 update? Copying the EA code 1:1 is a copyright abuse and then replacing a few lines of it may break other mods which rely on the EA code and if EA changes something this code will not be aware of this change and may cause exception files. Mod creators should write resilient, unbreakable mods but unfortunately there are only a few who actually do this. Well, after a month and a half it works perfectly and there have been no exception errors. So there's that.
Oops19 Posted November 4, 2022 Posted November 4, 2022 1 hour ago, merkle said: Well, after a month and a half it works perfectly and there have been no exception errors. So there's that. For this small method which is short and hopefully not used by other mods there is a chance that nothing will break for a long time. If you use it locally you are aware of this modification. If released to many users the day will come when this mod finally fails. One should really solve the issue with a proper injection without replacing EA methods. Injecting into the method, adding the code to a try/except block and if fails or isn't executed calling the original would make sense. Even if it fails one day it will not cause any exception while a log statement for exceptions would be nice.
sillygooseboy7 Posted November 14, 2022 Posted November 14, 2022 3 questions: 1: Is there a mod that adds features like watersports or animal scenes to WW? I love Devious Desires but it no longer works with WW and I simply can't play without WW. 2: Is there a mod out there that let's me edit all townies at once? The 10ish Sims I interact with are all smokin (because I meticulously edited them all individually) but the toenies don't match the theme of super sexy bods and lots of makeup. 3: If I can't edit all townies' bodies, is there at least a mod that puts a bunch of makeup on the townies? As I said earlier, they just don't match the theme
gravechild3 Posted November 26, 2022 Posted November 26, 2022 Any alternative to AEP or am I outta luck? I don't the DLC for it, and MCC won't work with AEP. Wickedjobs is out dated and all I want to play around with, is cams.
Steelcat Posted November 27, 2022 Posted November 27, 2022 (edited) Maybe someone knows this or a very similar hairstyle, but not Maxis-Match, but in the style of alpha mods, with good detailing? Spoiler Edited November 27, 2022 by Steelcat
geekyraptorstudios Posted November 28, 2022 Posted November 28, 2022 I don't know if this has already been done, like a ankle length labcoat, slightly oversized, like a mad scientist one, that is just that, a labcoat, have it be in the accessories slot so that naughty bits can be seen beneath it. so like a labcoat without pants or a shirt, allowing the 'junk in the trunk.' can be clearly visible. would be neat for naughty or sexy scientist builds.
geekyraptorstudios Posted November 28, 2022 Posted November 28, 2022 3 minutes ago, geekyraptorstudios said: I don't know if this has already been done, like a ankle length labcoat, slightly oversized, like a mad scientist one, that is just that, a labcoat, have it be in the accessories slot so that naughty bits can be seen beneath it. so like a labcoat without pants or a shirt, allowing the 'junk in the trunk.' can be clearly visible. would be neat for naughty or sexy scientist builds. something like this minus the clothes.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now