Jump to content

SexTec (SexLab, SexOut, etc.) - Container thread


Guest

Recommended Posts

Had a look at the Build-Your-Own-Pool code.

It seems for NPCs it equippes a striping item; for the player, it loops through all the slots sending uneqipItemSlot(i). In both cases it catches the uneqip event and uses it to build the re-requip list. Which is pretty much how Crazy did it.

 

I'm not sure why everyone treats NPCs different from the PC. Except for disabling Pip-Boy access when there is no Pip-Boy, of course. Still, it makes sense to do it that way, if only so I can make this F4SE free.

 

 

Link to comment

Had a look at the Build-Your-Own-Pool code.

 

It seems for NPCs it equippes a striping item; for the player, it loops through all the slots sending uneqipItemSlot(i). In both cases it catches the uneqip event and uses it to build the re-requip list. Which is pretty much how Crazy did it.

 

I'm not sure why everyone treats NPCs different from the PC. Except for disabling Pip-Boy access when there is no Pip-Boy, of course. Still, it makes sense to do it that way, if only so I can make this F4SE free.

 

Making it F4SE free would be a plus in my book. At this point we not only don't know if it will ever be finished, we can't even be sure that a half-abandoned project like this doesn't suddenly vanish entirely. It has happened before.

Link to comment

I'm not sure why everyone treats NPCs different from the PC. Except for disabling Pip-Boy access when there is no Pip-Boy, of course. Still, it makes sense to do it that way, if only so I can make this F4SE free.

I don't know about FO4 but in FONV there were a few quirks different for the PC and NPCs:

One was the NPC could swap outfits during animation ok but the player could not and turned invisible.

Another was if a Clothing effect spell adds any item Misc, or Armor, Scripted or not, to the Actor it works fine for the Player but will cause a BSD like crash if the item is worn by an NPC.

Link to comment

Pardon my ignorance but why is it taking so long for SexTec to come out ?
Isn't F4 almost the same engine as FNV and Skyrim albeit upgraded ?
F4SE is already here ... 

So why there isn't at least some version of SexTec available already ?

Not harping or anything, im just curious.

Link to comment

Isn't F4 almost the same engine as FNV and Skyrim albeit upgraded ?

Almost.

 

F4SE is already here ...

Partial implementation only, I'm afraid.

 

So why there isn't at least some version of SexTec available already ?

Working on it

Link to comment

Pardon my ignorance but why is it taking so long for SexTec to come out ?

Isn't F4 almost the same engine as FNV and Skyrim albeit upgraded ?

F4SE is already here ...

So why there isn't at least some version of SexTec available already ?

 

Not harping or anything, im just curious.

The F4SE we have is pretty rudimentary.
Link to comment

Pardon my ignorance but why is it taking so long for SexTec to come out ?

Isn't F4 almost the same engine as FNV and Skyrim albeit upgraded ?

F4SE is already here ... 

So why there isn't at least some version of SexTec available already ?

 

Not harping or anything, im just curious.

FFS does it hurt to read back one page, so we don't have to answer this question every second day? 1/2 this thread is people answering this and then people repeating the question 1 page later............
Link to comment

Well, I have a rough cut of some code. It needs a bit more work to make sure I'm loading all the properties I need from Crazy's mod.

 

After that, I have a test cell ready to make sure it works to at least a bare minimum level. Assuming it does, I'll get something out for a wider test asap.

 

I'm thinking I'll call it 4-Play. So the basic call should look like this:

Actor Property Wench Auto

...

    four_play(game.getplayer(), Wench)

That will randomly select a suitable pair of idles. If the second actor is None, a solo anim is selected, according to gender. The second param defaults to none, solo

 

    four_play(Wench)

Will show you your chosen NPC pleasuring herself.

 

There's also a more complex form that allows you to specify which actor gets which specific idle.

 

Currently it's not extensible, so new animations will need to be edited into the script. I'll probably look at that once the basics work. I'm also not chaining animations together, parsing tags, allowing variable animation times or even using Crazy's bed animations, since I'm not sure how to tell if there's a bed nearby without SKSE's cell walking functions.

 

I do send a custom event at the end of play though, so modders can pick up execution where it left off when the animation ran.

 

If anyone can think of anything major I've not considered, sing out.

 

People watching her do it seems popular.........

 

:P

Link to comment

 

FFS does it hurt to read back one page, so we don't have to answer this question every second day? 1/2 this thread is people answering this and then people repeating the question 1 page later............

 

Reading answered questions can be very hard I guess.

Link to comment

 

 

FFS does it hurt to read back one page, so we don't have to answer this question every second day? 1/2 this thread is people answering this and then people repeating the question 1 page later............

 

Reading answered questions can be very hard I guess.

 

 

LOL.........

 

:P  :lol:

Link to comment

 

Pardon my ignorance but why is it taking so long for SexTec to come out ?

Isn't F4 almost the same engine as FNV and Skyrim albeit upgraded ?

F4SE is already here ...

So why there isn't at least some version of SexTec available already ?

 

Not harping or anything, im just curious.

FFS does it hurt to read back one page, so we don't have to answer this question every second day? 1/2 this thread is people answering this and then people repeating the question 1 page later............

I love when some self apointed gatekeeper gets all triggered long after someone answered my questions simply and without a problem.

I don't know what is your problem but don't take it out on me by trying to start some shitstorm.

Link to comment

 

 

Pardon my ignorance but why is it taking so long for SexTec to come out ?

Isn't F4 almost the same engine as FNV and Skyrim albeit upgraded ?

F4SE is already here ...

So why there isn't at least some version of SexTec available already ?

 

Not harping or anything, im just curious.

FFS does it hurt to read back one page, so we don't have to answer this question every second day? 1/2 this thread is people answering this and then people repeating the question 1 page later............

I love when some self apointed gatekeeper gets all triggered long after someone answered my questions simply and without a problem.

I don't know what is your problem but don't take it out on me by trying to start some shitstorm.

 

Halstrom is not some appointed gatekeeper, Halstrom is respected modder and contributor to this community, so as he said " ALL YOU HAVE TO DO IS A LITTLE READING"! We have answered that very queastion 1000 times, Halstrom did not take it out on you, he just pointed out, just search and read

Link to comment

Quick upate:

  • Re-did the stripping code
  • Duplicated Crazy's Idle records and position statics so I don't need to load them from the esp
  • Remembered I still needed some code to select random MF animations
  • Split the idles into two lists so I could use RandInt to get an offset
  • Discovered there's a duplicate formid in my esp somehow. Re-saving the ESP didn't clear it, so I'll probably need to find it with F4Edit
  • Ran out of steam and spent the rest of the night watching TV
I didn't think I'd got all that much done until I came to write it all down.
Link to comment

Quick upate:

  • Re-did the stripping code
  • Duplicated Crazy's Idle records and position statics so I don't need to load them from the esp
  • Remembered I still needed some code to select random MF animations
  • Split the idles into two lists so I could use RandInt to get an offset
  • Discovered there's a duplicate formid in my esp somehow. Re-saving the ESP didn't clear it, so I'll probably need to find it with F4Edit
  • Ran out of steam and spent the rest of the night watching TV
I didn't think I'd got all that much done until I came to write it all down.

 

 

Sounds like a great idea to avoid burnout. I also recommend my current addiction. Mass Effect Andromeda. Speaking of which... holy crap they have a pretty explicit vanilla sex scene. 

 

Sorry, Not trying to derail the thread. This is great DocClox. :)

Link to comment

Anyone knows why sse got the priority? Is it because fallout 4 still has no final version released?

There's a thread explaining this but to sum it up I think it was but not limited to the following:

 

1. Higher demand for SSE since many mods that are already developed needed to be ported.

 

2. The "architecture" might've been similar to Oldrim and Newrim compared to Fallout 4 which runs almost completely differently.

 

3. Fallout 4 does not have a steady release yet. Although that could be changing with FO4-VR's release which is rumored to be a separate game you have to pay for, which means that Fallout 4 non-VR may not be given attention by Bethesda anymore since they'll focus on optimizing FO4-VR. Could be wrong though.

Link to comment

 

Anyone knows why sse got the priority? Is it because fallout 4 still has no final version released?

There's a thread explaining this but to sum it up I think it was but not limited to the following:

 

1. Higher demand for SSE since many mods that are already developed needed to be ported.

 

2. The "architecture" might've been similar to Oldrim and Newrim compared to Fallout 4 which runs almost completely differently.

 

3. Fallout 4 does not have a steady release yet. Although that could be changing with FO4-VR's release which is rumored to be a separate game you have to pay for, which means that Fallout 4 non-VR may not be given attention by Bethesda anymore since they'll focus on optimizing FO4-VR. Could be wrong though.

 

 

VR headsets are THOUSANDS of dollars USD.......A very small group of people own VR........VERY SMALL.

 

It make much more business sense to support the main game which can be sold to MILLIONS, rather than HUNDREDS.

 

:angry:

Link to comment

Its good to see the sexTec forum active and talented modders working on it :)

 

How does it feel, modders? How does it feel to be one of those few specialists that have the ability to make so much difference out there, in the world of Fallout 4? :)

How does it feel to know that there are masses of gamers out there literally waiting for your projects and work to be completed?

 

From fallout3/NV mods such as sexout, sexout tryout to Skyrim's sexlab and now SexTec, YOU have enabled milion of players around the world to make their game more immersive, more destructive, more realistic, more enjoyable, and definitely satisfy their sexual/perverted nature by capturing, sexing, raping, stripteasing, lactating, enslaving, collaring, whoring, pimping and BDSM-ing for the past 10+ years!!

 

Just take a break and reflect on your LEGACY right there.

Link to comment

Are there any resources to learn mod scripting?

 

Creationkit.com is probably your starting point. They haven't given Fallout its own tutorials yet, but it's close enough to Skyrim that working through those will get you started.

 

[edit]

 

The Bethesda.net forums might have some clues as well.

Link to comment

 

Halstrom is not some appointed gatekeeper, Halstrom is respected modder and contributor to this community, so as he said " ALL YOU HAVE TO DO IS A LITTLE READING"! We have answered that very queastion 1000 times, Halstrom did not take it out on you, he just pointed out, just search and read

 

 

 

He can be a Duke of goddamned Wales for all i care - he is not and admin nor moderator.

And he got all huff and puff about a post that was answered and entire matter concluded hours ago in a pointless attempt to feel superior. 

 

EOT. 

Link to comment

 

Are there any resources to learn mod scripting?

 

Creationkit.com is probably your starting point. They haven't given Fallout its own tutorials yet, but it's close enough to Skyrim that working through those will get you started.

 

[edit]

 

The Bethesda.net forums might have some clues as well.

 

Yeah most of us are still learning how the scripting stuff works as we go, its a bit of a jump for us FONV people compared to the Skyrim users :)
Link to comment

He can be a Duke of goddamned Wales for all i care - he is not and admin nor moderator.

And he got all huff and puff about a post that was answered and entire matter concluded hours ago in a pointless attempt to feel superior. 

EOT.

And I don't care who someone that causes huff and puff because they can't practice basic forum etiquette.

There's nothing superior feeling about it, just pissed off by a continual flow of lazy snowflakes who even skim a thread before asking a question about its subject.

EOT..

Link to comment

Archived

This topic is now archived and is closed to further replies.

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use