Icebird

Member
Sep 22, 2017
341
242
How do you access the wears_glasses and is_virgin variables?
Actor.setVirgin(true) is in fantasy_virgin_tribute.lpscene, but I can't get it to work:

Actor.setVirgin(true)
if actor.isvirgin()
"Hymenoplasty FTW"
else
"Damn hairbrush!"
endif
Maybe your code should look like this:
Code:
If Random(0,100)>50 && Actor.isValid() && !Actor.isTemporary() && !Actor.hadSex() && !Actor.hasRelationship(Child) && !Actor.isPregnant()
    Actor.setVirgin(true)
EndIf

if actor.isvirgin()
   "Hymenoplasty FTW"
else
   "Damn hairbrush!"
endif
 

FrogComet

New Member
Aug 23, 2016
6
5
If i wanted to download some new clothing and animations and additional content for this game, where would I find that stuff? New to this kinda thing but this game has unlimited potential holy wow
 

pencilfight

Newbie
Nov 9, 2018
44
107
- If a character (NPC or PC) gets impregnated by a horse, she'll have a noticeably bigger belly during the pregnancy
Is there a way to actually adjust this value or is it buried in the base game code along with the regular pregnancy morph settings?

(yes I know about the text file but adjusting the "Genesis8Female__PBMPregnant" value doesn't do anything anymore)
 

Grim

Active Member
Aug 17, 2016
848
599
Furthermore, I've found it seems to only handle 3 arguments per dress line.
Unless this was recently broken, it definitely wasn't true when I was working on my Dresser mod. I made outfits with more than 3 parts using a single dress() call during testing of the outfit loading/saving. Some clothing takes up multiple slots though, and you can't have multiple items occupying the same slot.
 
Last edited:

Pr0GamerJohnny

Conversation Conqueror
Sep 7, 2022
6,565
9,785
Unless this was recently broken, it definitely wasn't true when I was working on my Dresser mod. I made outfits with more than 3 parts using a single dress() call during testing of the outfit loading/saving. Some clothing takes up multiple slots though, and you can't have multiple items occupying the same slot.
that could certainly be it - though I don't know a way of knowing the biped slots ahead of time unless you do.......so some "leg" pieces could certainly occupy "underwear" slots as well.
 

Grim

Active Member
Aug 17, 2016
848
599
that could certainly be it - though I don't know a way of knowing the biped slots ahead of time unless you do.......so some "leg" pieces could certainly occupy "underwear" slots as well.
If you look in LifePlay/Content/Modules/Clothes4.txt it lists the slot(s) that each piece of clothing occupies. Each line will look something like:
Wisteria-Dress_1_F: false: Top, Bottom: ParUn
In that example, "Top" and "Bottom" are the slots it occupies. Basically what's listed after the "true:" or "false:" part of the line are the slots.
 
  • Red Heart
Reactions: Pr0GamerJohnny

Pr0GamerJohnny

Conversation Conqueror
Sep 7, 2022
6,565
9,785
How do you access the wears_glasses and is_virgin variables?
Actor.setVirgin(true) is in fantasy_virgin_tribute.lpscene, but I can't get it to work:

Actor.setVirgin(true)
if actor.isvirgin()
"Hymenoplasty FTW"
else
"Damn hairbrush!"
endif
When you're trying to do things that affect a single actor, I would make a test interaction script to see if it works outside the context of whatever else you're doing. This would consist of two things, a lpaction file and a lpscene file, where the lpaction file has "WHERE: interaction", and "SCENE_ALWAYS: THELPSCENENAME" - then the "WHO: getTarget()" - then write the code you want in the lpscene file, and you can test it on random npcs in the world of clicking them.

Also, like the other guy pointed out; the script language is sensitive to indentation.
 

Grim

Active Member
Aug 17, 2016
848
599
that could certainly be it - though I don't know a way of knowing the biped slots ahead of time unless you do.......so some "leg" pieces could certainly occupy "underwear" slots as well.
Not sure if you (or anyone else) have any use for these, but here's a few text files I created for my own use by parsing that Clothes4.txt file while I was working on my mod. I feel like they're a bit easier to read.

Each file has sections for male/female. slots.txt lists every possible clothing slot, categories.txt lists each slot/combination of slots that clothing items can fall under, and clothes.txt lists every category with every clothing item that falls under that category
 
Last edited:
  • Like
Reactions: xsmaks

Vamos69

Newbie
Apr 6, 2022
21
28
Raddeck should be removed from the Community Mods post. He has everything behind a paywall now and the content in the link is actually removed. He just left his disclaimers on the GitHub.
Maybe we should remove you from the Internet because you are too lazy to search! His mods are not under a paywall. Go to his website or Discord.
 
  • Angry
  • Haha
Reactions: xsmaks and JS-0813

NotEnoughHats

Member
Mar 27, 2019
163
95
Maybe we should remove you from the Internet because you are too lazy to search! His mods are not under a paywall. Go to his website or Discord.
Every site that I find is just dead 404 links because they are removed. What is his website called if he has one? Cuz it doesn't come up naturally. At this point I'm just searching "Raddeck LifePlay" and the only stuff that shows up is here, an old Vinfamy patreon post and a website where they deleted their account. So no. I was not too lazy to search. Also, it does not change the fact that the link on the mentioned post leads to literally nothing to install because the files are not there. Your criticism of me literally makes no sense.
 

STNeish

Member
Mar 20, 2020
246
358
Ok! Here's a batch. I have a lot of others I'm working on, and I'm not TOTALLY happy with all of these, but they're not bad.
See if you can identify them before downloading!
Also, I do appreciate feedback. If you like my presets, let me know. If you think they could be improved in some way, let me know that too.

Acina.jpg Aisha Tyler.jpg Allie Sin.jpg Anna Paquin.jpg AOC.jpg Ariane B.jpg Ariane Barnes.jpg Avril Lavigne.jpg Bjork.jpg Christina Ricci.jpg Dillion Harper.jpg Electre.jpg Elizabeth Hurley.jpg Emilia Clarke.jpg Emma Watson.jpg Faye Reagan.jpg Flame.jpg Ginger Lynn.jpg Heather Carolin.jpg Heather Graham.jpg Helen Mirren.jpg Isabella Chrystin.jpg Jennifer Aniston.jpg Jennifer Connelly.jpg Jiz Lee.jpg Kat Wonders.jpg Kristen Bell.jpg Kylie Richards.jpg Lily Labeau.jpg Lynda Carter.jpg Maisie Williams.jpg Marisa Tomei.jpg Ming Na Wen.jpg Patricia Tallman.jpg Quinn.jpg Sadie Adler.jpg Scarlett Johansson.jpg Sharon Stone.jpg Tess Ferre.jpg Victoria Smurfit.jpg Zeinia Merton.jpg

So, I couldn't attach all the zips to this post. About half are here, the rest are upcoming.
 
Last edited:

TheVegnar

Active Member
Jul 4, 2021
838
832
Question? IF goblin ever gets to be added to the game, will she be a shortstack or look pretty much like the orcs?
 

NotEnoughHats

Member
Mar 27, 2019
163
95
Raddeck's site:
Thank you for at least trying.

All the links in regards to the mod I mentioned are again stripped bare and do not work. The actual mod is gutted from the GitHub posted. It's actually the same source that the Community Mod Post links to. It goes back to my original point that it needs to be removed still. Unless the Install Instructions are out of date in that zip file, the files needed to mod the game are completely absent. Or if someone here has the working mod they could possibly share it?
 
Last edited:
3.30 star(s) 118 Votes