- Sep 14, 2017
- 852
- 996
Thats the Nudity Matters Mod by DbcafBeen fired for showing up naked or for an interview. Redownload or patch.
It's old and won't work as well as it should.
I think I'm going to rewrite those scenes.
Thats the Nudity Matters Mod by DbcafBeen fired for showing up naked or for an interview. Redownload or patch.
Yeah, i already try that, but nothing! Seems like it is a save corruption problem, cuz when i load an old file, or a start a new game, the problem disappear!freaksnake Sounds like an error with your uniforms.txt that defines what actors wear at work, so look here (lifeplay>content>modules>uniforms.txt) Id say either check it (its rather simple to comprehend) or download a update only version of LP and replace the uniforms.txt entirely.
Should fix it, unless you have a mod somewhere that somehow overwrites it. otherwise who knows ;p
It did. Thanks for the visual stimulationAnnnnnd one more because I'm in a good mood. This one has a special story behind it. My then at the time gf decided I deserved a "reward" and so invited her friend over for a threesome. It was this cute Indian girl. Little did I know she had a bf and now he's cucked and she is 33 weeks swollen with my baby. I hope this inspires you to change the pregmorph settings![]()
No, no, in my case, I was the business owner (or at least my character was), and every time I visited the said place, my employees were naked, for some reason. I have no problem with 'Nudity Matters' mod, or is it because this mod that my employees were naked?Been fired for showing up naked or for an interview. Redownload or patch.
Same here, by now however I reached the ¯\_(ツ)_/¯ point about it. Not using the Nudity Matters mod, btw.No, no, in my case, I was the business owner (or at least my character was), and every time I visited the said place, my employees were naked, for some reason. I have no problem with 'Nudity Matters' mod, or is it because this mod that my employees were naked?
Thanks for your input Ravenger6660, I have your entire mod collection and have used them both as inspiration and to learn from, so thank you. When i get some time to write some scenes i'll play around with this code.Most scenes are written around 1-5 actors. It can be hard to juggle a lot of NPCs for a scene. But you can have maybe up to 20 NPCs. I have a scene that has over 10 actors but all they do is function as background while I engage with only one actor.
It all depends on how much work you want to put into it.
A bit of code I use for one of my scenes.
Code:Helper = getPersonHere() While !Helper.isInterestedIn(Player) Helper = getPersonHere() endWhile If !Helper.isValid() || !Helper.isInterestedIn(Player) Helper = generatePersonTemporary() While !Helper.isInterestedIn(Player) || Helper:age > 35 Helper = generatePersonTemporary() endWhile Helper.randomizeRace() Helper.randomizeHairs() Helper.randomizeFace() Helper.dress() Helper.show(2) Endif
Didnt know this, I had just assumed based on AI that the actors where somewhere else at that time doing thier schedules, not "lurking" offscreen on location shall we say. Need to read up on GetPersonHereYour colleagues at work don't actually need to be visible for you to do things with them in scenes. You can just use
to get a co-worker for a scene. Pretend they're all at work with you but they're somewhere else in the building.Code:getSpecific(Colleague)
Kind of don't pay any attention to who you can actually see in a particular location in the game when it's not coming from a scene. That's just kind of an irrelevant visual nicety for the most part. Scenes all grab actors based on various conditions, or just create a random new actor, and then spawn them in if they're not there already which they almost always aren't. There is a function for getting characters already present, GetPersonHere(optional bool permanent), but I don't think I've ever found a scene that actually uses it.
It wouldI notice the [.randomize] etc, would that not change the actor? selected by getPersonHere() ive not seen that or understood it yet so plenty of gaps in my knowledge
Guest1 = getPersonHere()
If !Guest1.isValid()
Guest1 = generatePersonTemporary()
Guest1.randomizeRace()
Guest1.randomizeHairs()
Guest1.randomizeFace()
Guest1.dress()
Guest1.show(2)
Endif
Guest1.makePermanent()
Guest2 = getPersonHere()
If !Guest2.isValid()
Guest2 = generatePersonTemporary()
Guest2.randomizeRace()
Guest2.randomizeHairs()
Guest2.randomizeFace()
Guest2.dress()
Guest2.show(2)
Endif
Guest2.makePermanent()
//Repeat based on number you want
No there is no way to create a loop that creates & assigns "guests"....and then to "simulate" there being more, using something like the following code quickly (poorly and loosely) edited from (vin_base/scenes/uni_lecturer/job_interview_lecturer.lpscene
To then generate additonal guests?Code:Total = Random(0, 15) count = 0 While count < Total Actor = generatePerson() Actor:age => Random(18, 80) Actor.randomizeHairs() Actor.randomizeFace() Actor.dress() Actor.show(2) Player(Happy):: "Nice to meet you" Actor.hide() Actor.saveandDelete() count += 1 Endwhile
There's three roles for university; lecturer, student and tutor. There's not a lot of content. It's mostly just random events noticing students are sleeping with each other or their lecturers and the opportunity to get involved.So how do you go to and utilize a University? For me I can only travel to one if I click on one using the search function, and even after enrolling theres no events or skill increases aside from the class and teacher introduction, after that theres nothing going on.
it helps when you pick a role (teacher ,student) you don`t have to find a job anymore and you could leave it aside and do other stuff during the day,but it does do ingrease your intellenge skill btw there are a few scene`s but takes time and have to build relationship and interpersonal skill for itSo how do you go to and utilize a University? For me I can only travel to one if I click on one using the search function, and even after enrolling theres no events or skill increases aside from the class and teacher introduction, after that theres nothing going on.
i have tried your fix,but still on ocassions it doesn`t work and ppl showing up naked at work )oa library) but like i said it is not alway`s anymoreFixes for dbcaf_nudity_matters
You can use Notepad++Hello. I've been playing the game for a while. Love it! I've been thinking about building a mod for it but have no knowledge of what to do. Is there a place I can go to download the software needed and maybe even a tutorial or two? Thanks.