britney101
Newbie
- Jun 2, 2020
- 15
- 22
- 44
Lmao, why is he charging 1$ for this lame beach house it's not even cluttered and there's no much detail.
If you are referring to the Florence pack which is the October release is here:Guys, does anyone have FelixAndre's new pack?
Here you go!can someone upload the wicked whims compatibility version of lumpinou's woohoo wellness mod please?You must be registered to see the links
CmarNYC over at mod the sims may know. She's a great modder responsible in part for S4SE, amongst other mods. Been around as long as I can remember. Heavily into Sims 3 as well.After working on a solution to disabled sim icons, a bug btw. I have found that it's rabbit holes that cause it. Sims being in a rabbit hole at any time is the same as being off lot, as in not instanced which keeps you from using inventory and focusing on them. so the solution is to either keep sims from going into rabbit holes in the first place, something I want but will take a huge amount of code replacing all of the rabbit holes with live action shit OR writing a proper reset on rabbit hole events. Something lacking in the game which is why since day one peeps been having that random issue with disabled sims. I get it once and a while when telporting them on lot. They also teleport invisible. They are there but the selectable object never gets created. That I got fixed. Destroy the object and respawn. But the rabbit hole garbage I have yet to track down. Lol and asking anyone for help, aint nobody gonna know this shit
Yeah might. Thanks for the suggestion. I've asked and asked for help at both MTS and S4S but no one offers any help so I no longer ask. I assumed they just didn't know lol. However I figured it out.CmarNYC over at mod the sims may know. She's a great modder responsible in part for S4SE, amongst other mods. Been around as long as I can remember. Heavily into Sims 3 as well.
def end_career_session(sim_info: SimInfo):
career = sim_info.career_tracker.get_career_by_uid(ld_jobs.get_career(sim_info))
career._clear_career_alarms()
career._current_work_start = None
career._current_work_end = None
career._current_work_duration = None
career._at_work = False
career._rabbit_hole_id = None
career._career_session_extended = False
career._taking_day_off_reason = CareerTimeOffReason.NO_TIME_OFF
career._pto_taken = 0
career._clear_current_gig()
career.resend_at_work_info()
def activate_sim_icon(sim_info: SimInfo):
rabbit_hole = services.get_rabbit_hole_service()
if rabbit_hole.is_in_rabbit_hole(sim_info.sim_id):
rid = rabbit_hole.get_head_rabbit_hole_id(sim_info.sim_id)
rabbit_hole.remove_sim_from_rabbit_hole(sim_info.sim_id, rid)
career = sim_info.career_tracker.get_career_by_uid(ld_jobs.get_career(sim_info))
if career is None:
return False
if career._at_work:
try:
SelectionGroupService \
.get(services.active_household_id()) \
.remove_sim(sim_info)
except BaseException as e:
error_trap(e)
pass
try:
end_career_session(sim_info)
except:
ld_notice(sim_info, "Work Details", "{} does not need to end work shift!".format(sim_info.first_name))
pass
try:
SelectionGroupService \
.get(services.active_household_id()) \
.make_sim_selectable(sim_info)
except BaseException as e:
error_trap(e)
pass
return True
return False
My Origin is down as well but I can play just can't see what's in the gallery.Anyone able to play the game? Mine keeps saying origin servers temporarily down and i cannot play it offline either cause its asks me for activation code ☹