Jump to content

FUTA CONTENT THREAD - Futa News and More (1/26/17 Update)


Recommended Posts

Posted
On 4/2/2020 at 4:12 PM, alyosh said:

20200402042133_1.jpg.bb5053dbaaa858a1846247fac57eb41b.jpg

 

  Reveal hidden contents

20200402042056_1.jpg.98ae663625088663c458e80f9fec9c96.jpg20200402042108_1.jpg.727eb84856e46b69c9b781e46c1131ff.jpg20200402042123_1.jpg.372e0b355bf3c669b3267ea9f293b26f.jpg20200402042148_1.jpg.61f2a280c57adb765f18705e085d3a0b.jpg20200402042204_1.jpg.38c089b1b013e979266e703deb995e4e.jpg20200402042213_1.jpg.e1c81a822f22562437ce239a4e584aa5.jpg20200402042236_1.jpg.1f284c58b0f492e536704a9e9fb318a3.jpg

 

20200402042045_1.jpg

Could you please tell me what mods are you using? Love your characters looks!

Posted
16 minutes ago, Holzfrau said:

I'm not sure what you mean by launched.  Could you access an armor magic effect, or perhaps a script attached to such an effect?  Technically yes, I believe you could, but it would be a cumbersome script dive of getting worn form, getting its enchantment, then looping through the enchantment's magic effects.

 

I think Targultoon was on the right track with the alias fill method.  I would use two index-matched FormLists to keep your revealing and non-revealing armors correlated with each other.  With luck, you should be able to use the non-revealing FormList directly in your alias conditions, in a GetEquipped check (but it may only work for weapons?).  More info on what I mean by 'index-matched FormLists':

  Hide contents

So you'd have two FormLists, one that holds all of the non-revealing armors you'd want to replace on NPCs if the conditions are met, and another that holds the revealing versions you'd want to switch them to.  They would be "index-matched" in the sense that the first item in the non-revealing list would be swapped for the first item in the revealing list, the second non-revealing item would be swapped for the second revealing item, and so on.

 

With it set up like this, you can use your non-revealing list as a lookup for the revealing item you want - get the worn form in the BODY slot (or where ever), find its index in the non-revealing list, and that index tells you which item to pick in the revealing list.  This lets you put a one-size-fits-all script on your alias slots that can handle all the armor swapping you need.

 

The other main benefit of this method is that it's very easy to update and maintain - If you add or remove a revealing/non pair, you only need to change the FormLists and there's no risk of breaking scripts on your existing saves.

 

Oh I didn't knew about matching index formlist. I looked up the getequipped function and it seems it's only able to check weapons, didn't find any conditional related to armor so I'll probably need to make a script with a conditional using "GetWornForm - Actor" tho.

Posted
2 minutes ago, LeFlemard said:

Oh I didn't knew about matching index formlist. I looked up the getequipped function and it seems it's only able to check weapons, didn't find any conditional related to armor so I'll probably need to make a script with a conditional using "GetWornForm - Actor" tho.

The GetEquipped conditional function definitely works on armour, I use it in Deviously Vanilla too. I'm not sure if it will work with Formlists, but if it does, you can fill the aliases based on that, then in a script attached to those aliases, use the OnInit event (I think), get the equipped armour using GetWornForm, use GetAt to find the index of the armour in the list, and look up the other armour in the other list, and get the ActorRef to unequip and equip them.

 

Another thing to keep in mind is that Formlists act like sorted sets rather than lists, so you can't put the same form in them more than once.

Posted
2 hours ago, sroblo said:

Could you please tell me what mods are you using? Love your characters looks!

Thank you :)

For the hair https://www.nexusmods.com/skyrimspecialedition/mods/31300

The horns : https://www.nexusmods.com/skyrimspecialedition/mods/9224

The piercings https://www.nexusmods.com/skyrimspecialedition/mods/14388 and https://www.nexusmods.com/skyrimspecialedition/mods/30786

The tattoo https://www.nexusmods.com/skyrimspecialedition/mods/19162 and 

 

The schlong : 

 

Posted

mmm, a script like that ?

 unknown.png

(Sorry for the color codding, I haven't figured out still how to change it for skyrim compiler pro)

I'm lost in how to set up the dummy quest in the ck tho, I know should disable "run once" and activate "run on start", but the ref alias thing... I can only put isInFaction conditional faction by faction so I dunno how to set it up with a faction formlist.

Posted
37 minutes ago, LeFlemard said:

mmm, a script like that ?

 unknown.png

(Sorry for the color codding, I haven't figured out still how to change it for skyrim compiler pro)

I'm lost in how to set up the dummy quest in the ck tho, I know should disable "run once" and activate "run on start", but the ref alias thing... I can only put isInFaction conditional faction by faction so I dunno how to set it up with a faction formlist.

I'm just about to go to sleep, but I'll mention a few things,

 

You should put everything below the properties in an OnInit event

Event OnInit()
  <blabla>
EndEvent

Instead of GetWornFormId, you should use GetWornForm, and probably best to cast to Armor immediately.

There's a few typos, and you don't need to use Un/EquipItem if you are already removing it.

Scriptname SOS_Armor_Swapper_Main extends ReferenceAlias
ReferenceAlias Property Alias_npc Auto
FormList Property list1 Auto
FormList Property list2 Auto
; int Property BodySlot Auto ;Probably not even necessary if always using same bodyslot.

Event OnInit()
  Actor npc = Alias_npc.GetActorRef() ; can probably also just be Self.GetActorRef()
  Int BodySlot = 0x00000004  ; Slotmask for Body
  Armor ArmorToRemove = npc.GetWornForm(BodySlot) as Armor
  int i = list1.Find(ArmorToRemove)
  Armor ReplacingArmor = list2.GetAt(i) as Armor
  npc.RemoveItem(ArmorToRemove)
  npc.EquipItem(ReplacingArmor)
EndEvent

For the quest, it should be start game enabled, but rn I'm not certain the proper way to reset the quest to refill aliases, so I'll have to test something and get back to you tomorrow for that.

To fill the aliases, you probably don't actually need the GetInFaction condition. Just use GetEquipped with the Formlist of nonrevealing armours, which should be enough.

 

Keep in mind that the above script doesn't actually fully function like this, you still need to check what schlong is equipped.

 

 

Edit: although if you don't use gender bender with the female no schlong add-on, you can just use the GetInFaction condition.

 

 

Posted
55 minutes ago, Targultoon said:

I'm just about to go to sleep, but I'll mention a few things,

 

You should put everything below the properties in an OnInit event


Event OnInit()
  <blabla>
EndEvent

Instead of GetWornFormId, you should use GetWornForm, and probably best to cast to Armor immediately.

There's a few typos, and you don't need to use Un/EquipItem if you are already removing it.


Scriptname SOS_Armor_Swapper_Main extends ReferenceAlias
ReferenceAlias Property Alias_npc Auto
FormList Property list1 Auto
FormList Property list2 Auto
; int Property BodySlot Auto ;Probably not even necessary if always using same bodyslot.

Event OnInit()
  Actor npc = Alias_npc.GetActorRef() ; can probably also just be Self.GetActorRef()
  Int BodySlot = 0x00000004  ; Slotmask for Body
  Armor ArmorToRemove = npc.GetWornForm(BodySlot) as Armor
  int i = list1.Find(ArmorToRemove)
  Armor ReplacingArmor = list2.GetAt(i) as Armor
  npc.RemoveItem(ArmorToRemove)
  npc.EquipItem(ReplacingArmor)
EndEvent

Some notes on this for @LeFlemard, but please read my comments below before mucking with this script too much.

  1. This is already on an alias, so like Targultoon's comment implies, you don't need the Alias_npc property to point it back to itself.  GetActorRef() by itself will suffice.
  2. More descriptive names for your lists will make your script easier to read, and make mistakes less likely.
  3. A check to ensure i isn't -1 (which means the current armor wasn't found in the non-revealing list) before using it to index into your revealing armor list is probably a good idea.
Quote

For the quest, it should be start game enabled, but rn I'm not certain the proper way to reset the quest to refill aliases, so I'll have to test something and get back to you tomorrow for that.

It actually takes 2 quests for this method.  A 'main' quest, and a 'scanner' quest.  The scanner quest is the one you will be filling aliases in, the main quest will manage the scanner.  Also, after further thought, you should only do a script on your main quest instead of on each alias of the scanner quest.  The reasoning behind refactoring the script this way is since it is only attached to a single item, maintenance is again much easier.  If you have to add an additional property, you only need to set the value once rather than 20 times.

  • The scanner quest should not start game enabled.  As stated above, your aliases shouldn't have a script attached to them..  They will function solely by the conditions you use to fill them.
  • The main quest should start game enabled.  Then you can add your single script to this quest where all the magic will happen.  First, you will want an OnInit event that will RegisterForSingleUpdate with an update interval of your choosing (I would put this in a global variable and pull that into the script.  Then you can use the console to change the variable while the game is running if you want).  Then, add an OnUpdate event.

The OnUpdate event in your main quest will need to do these things:

  1. Start the scanner quest.
  2. Loop through all the aliases of the scanner quest, and perform the armor swapping logic - basically, the script work you've already done goes in this part.
  3. Stop the scanner quest - this is important, because you don't want the aliases hanging on to the actors they've picked up.
  4. RegisterForSingleUpdate again, same as you did in OnInit, so the event keeps recurring.

A note about RegisterForSingleUpdate - I usually put this at the end of OnUpdate, just so it's clear that it will run again in X seconds.  However, if anything goes wrong in the event logic before it reaches this point, the script will bomb out and RegisterForSingleUpdate will never happen.  This means that any failure will stop the script from repeating, breaking your mod.  I recommend putting RegisterForSingleUpdate at the beginning of your OnUpdate while you're still hammering out the script logic, and then move it to the end once you're confident everything is working.

 

Here's a rough version of what I think it should look like:

Spoiler

Scriptname SOS_Armor_Swapper extends Quest

 

GlobalVariable Property ScannerInterval Auto
Quest Property ScannerQuest Auto
FormList Property StandardArmors Auto
FormList Property RevealingArmors Auto

 

event OnInit()
    RegisterForSingleUpdate(ScannerInterval.GetValue())
endEvent

 

event OnUpdate()
    ScannerQuest.Start()

 

    int curAlias = ScannerQuest.GetNumAliases()

 

    while (curAlias > 0)
        curAlias -= 1

        Actor myActor = (ScannerQuest.GetNthAlias(curAlias) as ReferenceAlias).GetActorRef()

        if (myActor) ; TODO - Add any other logic you need to check if we should do anything with this actor here.
            Form oldArmor = myActor.GetWornForm(0x00000004)
            int index = StandardArmors.Find(oldArmor)

            if (index > -1)
                Armor newArmor = RevealingArmors.GetAt(index) as Armor
                myActor.RemoveItem(oldArmor, 255, true)
                myActor.AddItem(newArmor, 1, true)
                myActor.EquipItem(newArmor, false, true)
            endIf
        endIf
    endWhile

 

    ScannerQuest.Stop()


    RegisterForSingleUpdate(ScannerInterval.GetValue())
endEvent

Quote

To fill the aliases, you probably don't actually need the GetInFaction condition. Just use GetEquipped with the Formlist of nonrevealing armours, which should be enough.

I think checking against SOS's Schlongified faction (i.e. has SOS done anything with this actor yet?) would be helpful.  You'll want to cram as much decision making into the alias fill as you can, it's much faster than using script to do the same thing.

Posted

would something like that works for checking type of shlong equipped?

  Int iFaction          = factionList.GetSize()   ; initialize faction index
  bool hasCorrectShlong = False                   ; initialize bool
  While iFaction                                  ; until equal zero
      iFaction -= 1
      Faction testingFaction = factionList.GetAt(iFaction) as Faction   ; put in testingFaction currently tested faction
      if npc.IsInFaction(testingFaction)                              ; check if in faction
          hasCorrectShlong = True                                       ; declare being in correct faction to apply
      EndIf
  EndWhile

with factionList being a formidList containing every valid sos faction (by example "SOS_Addon_BDFemaleSheath_Faction", which is a bad example, as it is sheathed)

Posted
2 minutes ago, LeFlemard said:

would something like that works for checking type of shlong equipped?


  Int iFaction          = factionList.GetSize()   ; initialize faction index
  bool hasCorrectShlong = False                   ; initialize bool
  While iFaction                                  ; until equal zero
      iFaction -= 1
      Faction testingFaction = factionList.GetAt(iFaction) as Faction   ; put in testingFaction currently tested faction
      if npc.IsInFaction(testingFaction)                              ; check if in faction
          hasCorrectShlong = True                                       ; declare being in correct faction to apply
      EndIf
  EndWhile

with factionList being a formidList containing every valid sos faction (by example "SOS_Addon_BDFemaleSheath_Faction", which is a bad example, as it is sheathed)

I think we've derailed this thread long enough.  Can you start a new thread and tag me and Targultoon so we don't miss it?

Posted

I require some experts on this matter as this is beyond my already limited capabilities.

 

I'm trying to get a mesh of a tucked SoS penis to work with T.A.W.O.B.A. bottoms but it just doesn't work. The mesh was created by ItalianDragon from their thread here on femboys so it was made for males not females. In outfit studio the mesh combined with the bottoms looks fine; however, in game the penis bends into the body because the weights are off. So I was thinking maybe a static mesh would be better since it makes sense that the penis and scrotum would be tucked securely into the bikini but, that is beyond my ability to do. Or maybe it could work with animations honestly I don't know.

 

Here is the mesh that ItalianDragon made

Any insight and expertise in this matter would be greatly appreciated as there is very sore lacking of panty bulges for futas. I think that having something like this would greatly add to immersion because as great as it is to see penises and balls flopping around some protection for them would be nice too.

 

Thank you.

Posted
2 hours ago, WhatIsPeace said:

I require some experts on this matter as this is beyond my already limited capabilities.

 

I'm trying to get a mesh of a tucked SoS penis to work with T.A.W.O.B.A. bottoms but it just doesn't work. The mesh was created by ItalianDragon from their thread here on femboys so it was made for males not females. In outfit studio the mesh combined with the bottoms looks fine; however, in game the penis bends into the body because the weights are off. So I was thinking maybe a static mesh would be better since it makes sense that the penis and scrotum would be tucked securely into the bikini but, that is beyond my ability to do. Or maybe it could work with animations honestly I don't know.

 

Here is the mesh that ItalianDragon made

Any insight and expertise in this matter would be greatly appreciated as there is very sore lacking of panty bulges for futas. I think that having something like this would greatly add to immersion because as great as it is to see penises and balls flopping around some protection for them would be nice too.

 

Thank you.

I think it should be pretty easy to do what you want, i tried messing with it in outfit studio and all you should have to do is remove the schlong bones from the mesh and try to weight it mostly static to the pelvis bone, trying to match the weights on the panties.

 

reference pics:

Spoiler

1888687196_Annotation2020-04-04203519.png.44f27b100e6ff64f489026233994a5b8.png        1550627948_Annotation2020-04-04203645.png.2047c84a9d26e05f68b3f972a6820576.png

 

Posted
42 minutes ago, prxzac said:

I think it should be pretty easy to do what you want, i tried messing with it in outfit studio and all you should have to do is remove the schlong bones from the mesh and try to weight it mostly static to the pelvis bone, trying to match the weights on the panties.

 

reference pics:

  Reveal hidden contents

1888687196_Annotation2020-04-04203519.png.44f27b100e6ff64f489026233994a5b8.png        1550627948_Annotation2020-04-04203645.png.2047c84a9d26e05f68b3f972a6820576.png

 

WOW thank you prxzac! It works and looks AMAZING and is GLORIOUS.

I work a professional job and as such have no time to learn modding tools but I think I did well enough with your guidance.

The loss of animation IMO isn't really much of a loss because would it have made since for balls to be swaying in a bikini? I think not!

 

Once again thank you prxzac for your assistance and I love this community!

 

Edit: Something like this should be on the 1st page so all the pretty girls can get bulges for those armors.

Posted
6 hours ago, WhatIsPeace said:

WOW thank you prxzac! It works and looks AMAZING and is GLORIOUS.

I work a professional job and as such have no time to learn modding tools but I think I did well enough with your guidance.

The loss of animation IMO isn't really much of a loss because would it have made since for balls to be swaying in a bikini? I think not!

 

Once again thank you prxzac for your assistance and I love this community!

 

Edit: Something like this should be on the 1st page so all the pretty girls can get bulges for those armors.

if we had that for all armors...they'd all need seperate bodyslide files, that would be one hell of a list. however, i'd appreciate it if someone tried it. but what i really want is for the cock to be a part of the body so that it's automatically loaded on clothing removal instead of waiting for my DB to be naked, kinda kills it for me.

Posted

I hate to take advantage of the kindness of others but, I once again ask for your help.

The mature skin texture was taken down by Maevan2 sometime ago however they said that they did not want people to stop using it, here is the reupload on nexus.

The SoS retexture for mature skin is not updated to this reupload. As such there is color seam on the base of the pelvis and I have no idea how to work with textures whatsoever. Could someone create a new texture for SoS using that texture?

 

Also; as an addendum to my previous post. The penis tuck mesh only works for TAWOBA bikini bottoms. When I tried to add the mesh to a sling bikini or a two-piece bikini for example the penis tucked mesh would not appear in game. However, it does work for just the bikini bottoms alone.

Posted
2 hours ago, WhatIsPeace said:

I hate to take advantage of the kindness of others but, I once again ask for your help.

The mature skin texture was taken down by Maevan2 sometime ago however they said that they did not want people to stop using it, here is the reupload on nexus.

The SoS retexture for mature skin is not updated to this reupload. As such there is color seam on the base of the pelvis and I have no idea how to work with textures whatsoever. Could someone create a new texture for SoS using that texture?

 

Also; as an addendum to my previous post. The penis tuck mesh only works for TAWOBA bikini bottoms. When I tried to add the mesh to a sling bikini or a two-piece bikini for example the penis tucked mesh would not appear in game. However, it does work for just the bikini bottoms alone.

sounds like a slot issue with the bikinis. to fix you'd need to open nifskope and change slots. it's an easy process and has been done by me. theres an issue with the tribal clothe set that makes it incompatible with sos...easy fix. find the slot the item uses and change it. it cannot be the same slot as the tuck mesh.

Posted
15 hours ago, WhatIsPeace said:

I hate to take advantage of the kindness of others but, I once again ask for your help.

The mature skin texture was taken down by Maevan2 sometime ago however they said that they did not want people to stop using it, here is the reupload on nexus.

The SoS retexture for mature skin is not updated to this reupload. As such there is color seam on the base of the pelvis and I have no idea how to work with textures whatsoever. Could someone create a new texture for SoS using that texture?

 

Also; as an addendum to my previous post. The penis tuck mesh only works for TAWOBA bikini bottoms. When I tried to add the mesh to a sling bikini or a two-piece bikini for example the penis tucked mesh would not appear in game. However, it does work for just the bikini bottoms alone.

 

12 hours ago, Cobraofficer11 said:

sounds like a slot issue with the bikinis. to fix you'd need to open nifskope and change slots. it's an easy process and has been done by me. theres an issue with the tribal clothe set that makes it incompatible with sos...easy fix. find the slot the item uses and change it. it cannot be the same slot as the tuck mesh.

↑ this, or you can select the mesh in outfit studio and change the slot to 32 on the partition tab

Posted
On 3/31/2020 at 11:06 PM, prxzac said:

 little hyper photoshoot~ 

 

817027201_enb2020_03_3111_40_38_95.jpg.cee9565448dc93b5754389eadcc7d0ec.jpg
 

  Hide contents

 

944414878_enb2020_03_3102_49_34_88.jpg.87688fb9d8142822e192e9f9c026d919.jpg

 

600403290_enb2020_03_3105_17_57_68.jpg.3f2e250a659bc3072d03878ef555abcf.jpg

 

1342480739_enb2020_03_3105_13_19_46.jpg.36573d5801149df04b5d251af469c51c.jpg

 

1481479754_enb2020_03_3104_51_08_20.jpg.338434bd2931af7678e63046e285debf.jpg

 

1379886153_enb2020_03_3104_55_36_62.jpg.d1a5b06dce9433076999a3484e12e8a6.jpg

 

 

How did you make this effect, what figure and clothes are you using, can you tell me, thank you, I love futa

Posted

I'm not quite sure what happened, but recently I started having seams on my futa dicks. These are with ERF hipoly;20200406223117_1.jpg.db5cf699d15615400eda35a270894518.jpg20200406223128_1.jpg.4ce180b0fc0ba1a6278082c33f16c106.jpg

I don't think it could be a texture seam because I'm using the most up to date textures (I'm in LE for the record.) so I'm thinking it's a mesh issue? I'm using https://www.nexusmods.com/skyrim/mods/98974 but this never caused this before. 

I'm also using https://www.nexusmods.com/skyrim/mods/101070 but again, never gave me issues before. 

I reinstalled my textures, rebuilt the meshes in bodyslide (I'm using CBBE.) tried uninstalling and reinstalling bodyslide, used earlier versions of it, messed with bodyslide sliders, and even tried different texture options in fair skin complexion just to be on the safe side, so I know for a fact it doesn't have to do with textures, as they worked prior to this issue suddenly coming up.

Anyways, any ideas? I've seen forum posts with this issue before but I've never seen a solution as far as I've searched.

EDIT: Oh, forgot to mention that I uninstalled and reinstalled ERF Hi poly as well. No dice.

Posted

so I figured I would ask here as this only happens when playing as a Futanari character.  When using animations that need adjustment due to the slight size mismatch where the futa is in the male position, when moving the 2 actors together the weirdest thing happens.  both actors will stand up and the player performs a vamp kill move I think, tilts the head of the other actor and bites the neck.  The actors will be stuck standing inside each other unless you change scene with O until the entire scene would normally stop.  You get the message my desires are driving me crazy regardless of actual arousal.   For some other information I am using CBBE 3BBB body with SOS -Futanari CBBE, Gender Bender (Immersive Gender Change crashed before logo everytime). CBPC and SMP installed using the Lite option in the CBBE 3BBB install.   Figure it might be a collision thing or maybe one of the mods is acting weird.  I use these same mods (hdt and UNP addon instead of SE options) in LE and have never seen this.  Hopefully was able to get a good picture of what happens.



20200406194823_1.jpg.c559e8506d1c185ae787727ecc79f9d0.jpg20200406194835_1.jpg.5ea32771992d6f17538d8cedfe92c819.jpg20200406194837_1.jpg.3e50606e772e46a71e85532cbd0fd4ea.jpg20200406194844_1.jpg.da22cd074d8f66e68f8a972ea3f7b0c7.jpg

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...