Jump to content

What is\Where is - Searches and Requests thread.


Recommended Posts

Posted

https://www.nexusmods.com/skyrimspecialedition/mods/43631?tab=description&BH=0

 

I've mentioned it sometime ago and questioned weather i needed to wait for textures... forget that.

1. it has an skse script missmatch. it might be because its made for vortex but I don't know.

found a fix. so the real true issue is the bones. 

 

the bones are not the ones used by 3bbb. its using its own custom bone which is far less complex. 

 

the files were lifted from quarantine if anyone wants to check it out. i tried to use a similar mod in Oblivion, same bone issue giving me a twitchy cat. this cat is making me cry.

Posted
1 hour ago, nilead said:

what whould i have to edit myself to get this result?

 

 

Looks like lvl markers. Most if not all draugr are going to go through lvl markers, sadly you have lvl markers,for draugrs, that are placed that are specific to female draugrs. If you open any of those lvl markers in ck and remove the female draugrs that lvl marker as assigned to draw from and replace it with male draugr npcs that you would get desired results. Attacking through race might be easier? 

 



 

Region.jpg.3de9f1f374a30e192940f38efdad54c1.jpg

 

Raceegion.jpg.1d33c5c9eaa8befd55178b779bbec664.jpg

 

Posted
2 minutes ago, Heroine HoneyCrotch said:

 

 

 If you open any of those lvl markers in ck and remove the female draugrs that lvl marker as assigned to draw from and replace it with male draugr npcs that you would get desired results. Attacking through race might be easier? 

 

Thanks for your reply. I probably should've guessed it wouldnt be easy, since, well, there doesnt seem to be such mod allready)

Well ive been an SSE edit bum for long enough, lets see what i can do about it.

Posted

here is an LE file(read your initial post from the stupid sidebar on LL home page which doesnt indicate,until after clicking on it,what game message is for,so dumb, in fact as dumb as me not verifying what game you were talking about after having had clicked on it) that being said,file should work, havnt tested, just now made it since making first post. Might have to load file into SE ck and save to have proper form. 

 

MaleDraugr.7z

 

I did this file in ck but i'm losely guessing it could of been done in xedit as well. 

 

it only looks bad in pic(RED) cause right now my bashed patch is overwriting it. 

 

aaan.jpg.862098aab1e8f413f892182d5f5b9ac2.jpg

Posted

Hello,

 

I search for a mod which includes cum swallow animations or in genrell swallow animations.

Does something like this exist?

Posted

I recently got into modding Skyrim again and I tried to find some armor/outfit replacers with 3BBB physics but the only ones I found are Ghaans Revealing and BD's Armor and Clothing Replacer which are fine but couldn't be the only ones out there... right?

 

Is there any other replacer available with 3BBB physics included? Thanks!

Posted

Ride Sharing SSE is a mod that allows a follower to ride sitting behind the player. It's a bit clunky but fun.

Would someone be interested in patching either Horgasm (Vyxenne's SE version post #64) or SLEN (Mounted Exposure element) to work also with the passenger?

 

It needs someone who can script (which sadly I can't).  It would be good to add the visual element to orgasm - squirt or cum, which might need to be prodigious to show in 4rd person riding. Therefore needs to work for male / female / futa.

 

I've also asked on SLEN and Horgasm (LE) threads.

 

Thanks!

 

 

Posted
3 hours ago, Bluegunk said:

Would someone be interested in patching either Horgasm (Vyxenne's SE version post #64) or SLEN (Mounted Exposure element) to work also with the passenger?

I would be all wet and tingly if Horgasms reset the Aroused meter and added a stroke to the Times Masturbated tally in the Player Diary... then my new saddles would make a lot more sense.

 

Spoiler

DildoSaddle-Frost.jpg

 

Posted
1 hour ago, Vyxenne said:

I would be all wet and tingly if Horgasms reset the Aroused meter and added a stroke to the Times Masturbated tally in the Player Diary... then my new saddles would make a lot more sense.

 

  Reveal hidden contents

 

 

 

Hmm thanks, I already downloaded your Shadowmere one.  Wait...you mean there are more? Would they work with Convenient Horses?  ?

 

Meanwhile - still hoping someone could patch for Ride Sharing.   ?

Posted
22 hours ago, Bluegunk said:

 

Hmm thanks, I already downloaded your Shadowmere one.  Wait...you mean there are more? Would they work with Convenient Horses?  ?

 

I have one for Emfy, and the one in the image for Frost. The problem is, I haven't found a way yet to apply the dildo saddle only to Frost- changing his generic saddle mesh via an override plugin resulted in a fun toy in all of the generic Saddles, including Frost's- so all the generic saddles in my game poke fun at their riders... including the guys...

 

I'm still trying to noodle out the problem with Frost's saddle so the Imperial Guards can ride unmolested.

 

3 minutes ago, Vyxenne said:

Would they work with Convenient Horses?

What saddle does Convenient Horses use? Just look in the plugin with SSEEdit.

 

Posted

Is there a mod with elf ears like these? They are from someone called Dark Sovereign who is evil, so he deleted his patreon and all his mods, because he didn't want anyone to enjoy them after he had stopped playing Skyrim.

 

Spoiler

42644-1605996059-2139225067.png

 

Posted
6 hours ago, Vyxenne said:

I have one for Emfy, and the one in the image for Frost. The problem is, I haven't found a way yet to apply the dildo saddle only to Frost- changing his generic saddle mesh via an override plugin resulted in a fun toy in all of the generic Saddles, including Frost's- so all the generic saddles in my game poke fun at their riders... including the guys...

 

I'm still trying to noodle out the problem with Frost's saddle so the Imperial Guards can ride unmolested.

 

What saddle does Convenient Horses use? Just look in the plugin with SSEEdit.

 

 

Have you tried attaching a script to your horse to switch its saddle to an alternate one on different conditions?

Assuming I've understood you correctly, something like this should do what you want.

 

Spoiler

Bool Function IsBusy()
    return False
EndFunction

Function Busy()
    GotoState("Busy")
EndFunction

Function NotBusy()
EndFunction

State Busy
    Bool Function IsBusy()
        return True
    EndFunction

    Function Busy()
        While IsBusy()
            Utility.WaitMenuMode(0.1)
        EndWhile
        Busy()
    EndFunction

    Function NotBusy()
        GotoState("")
    EndFunction
EndState

Event OnInit()
    Busy()
    If IsEquipped(GenericSaddle)
        Utility.Wait(0.1)
        EquipItem(AlternateSaddle, False, True)
    EndIf
    NotBusy()
EndEvent

Event OnObjectEquipped(Form akBaseObject, ObjectReference akReference)
    Busy()
    If akBaseObject == GenericSaddle
        Utility.Wait(0.1)
        EquipItem(AlternateSaddle, False, True)
    EndIf
    NotBusy()
EndEvent

Event OnObjectUnequipped(Form akBaseObject, ObjectReference akReference)
    Busy()
    If akBaseObject == AlternateSaddle
        Utility.Wait(0.1)
        If GetItemCount(GenericSaddle) > 0
            EquipItem(GenericSaddle, False, True)
        EndIf
        RemoveItem(akBaseObject, GetItemCount(akBaseObject), True)
    EndIf
    NotBusy()
EndEvent

Event OnActivate(ObjectReference akActionRef)
    Actor act = akActionRef as Actor
    If !act
        return
    EndIf
    Float timeout = 0.0
    While !IsBeingRidden() && timeout < 2.0
        Utility.Wait(0.1)
        timeout += 0.1
    EndWhile
    If !IsBeingRidden() || !act.IsOnMount()
        return
    EndIf
    Busy()
    Int sex = act.GetLeveledActorBase().GetSex()
    If sex == 1
        If IsEquipped(GenericSaddle)
            EquipItem(AlternateSaddle, False, True)
        EndIf
    Else
        If IsEquipped(AlternateSaddle)
            UnequipItem(AlternateSaddle, False, True)
        EndIf
    EndIf
    NotBusy()
EndEvent

 

 

Just attach it to the horse's NPC record, if it's a new game or you are able to respawn it, or create a new constant & self spell, attach the script to its Magic Effect record and add the effect to your horse's NPC record.

Posted
9 hours ago, Vyxenne said:

I have one for Emfy, and the one in the image for Frost. The problem is, I haven't found a way yet to apply the dildo saddle only to Frost- changing his generic saddle mesh via an override plugin resulted in a fun toy in all of the generic Saddles, including Frost's- so all the generic saddles in my game poke fun at their riders... including the guys...

 

I'm still trying to noodle out the problem with Frost's saddle so the Imperial Guards can ride unmolested.

 

What saddle does Convenient Horses use? Just look in the plugin with SSEEdit.

 

 

Have you tried making a unique saddle for Frost(with a unique mesh folder) and replace the vanilla saddle with it? Or, you can download a mod called Craftable Horse Barding and replace one of the meshes in that mod. I think they are different from the vanilla saddles.

Posted

So, I've been on this site for a while, made an account about a year ago hoping to finally add some more *Spicy* mods to Skyrim special edition.

 

Now, I'm aware one should be more knowledgeable with this kind of thing before finding themselves at the loverslab website, but regardless, I cant make heads or tails of most of the instructions these mods give, and once when I did follow the instructions to a T and got all the required mods into Vortex, the best I got was the horses had sheathes, nothing more than that. At this point, I've looked everywhere for some sort of tutorial, something to tell me what exactly to do and there's just nothing. I just want to get some of these mods going.

 

One site I found put together some modpack but I don't want some 4k textures I have zero need for, and don't need some beautification mod for the ladies, I'm pretty much gay so I just don't see the need, especially when SSE has perfectly fine textures as is to me at least.

 

At the end of the day, I just feel like there should be a proper plug-and-play solution here that doesn't have me need to know how to manually delete and replace skeletons in game or know how to code, so I'm looking for any sort of decent tutorial someone can give or direct my dumb ass to, lol. I'd really appreciate it, especially given my few tried, and failed, attempts.

Posted

Has anyone made a wabbajck list of their game? Dungeons & Deviousness looks interesting but they don't plan on adding Beeing Female. I'd really like to try getting a list with that in it. I've had really good luck with what people have put together before as they are much more stable then me just making an MO2 list. So yea, there are a lot of things I'd like to see and do with SE but I'm not able to make a stable version and am trying to leach off someone that has been able to do it. I wouldn't mind having any of the other LL mods on it as I really haven't seen anything to make me cry. :)

Well, thanks for taking time to read this and maybe someone can help out.

Posted
19 hours ago, Vyxenne said:

What saddle does Convenient Horses use? Just look in the plugin with SSEEdit.

 

 

Ermmm....ones you can sit on?  ?

 

I looked at the plug in. They are Nifs in Armor and in Armor Addon.  They are unique to the mod, not vanilla game ones.  

 

Sorry to be dumb. ?

 

Anyone up for Slen or Horgasm???

Posted
13 hours ago, jmf890 said:

 

Have you tried attaching a script to your horse to switch its saddle to an alternate one on different conditions?

Assuming I've understood you correctly, something like this should do what you want.

 

  Reveal hidden contents

 

Just attach it to the horse's NPC record, if it's a new game or you are able to respawn it, or create a new constant & self spell, attach the script to its Magic Effect record and add the effect to your horse's NPC record.

Woo, thanks! I'll see if I can use it, or at least parts of it! I can't set it up where users have to start a new game to use the mod, though.

 

I just noticed that Frost's "outfit" (including the saddle) is also shown in a Template ("DefaultHorse3" or something similar) but I just assumed that whatever changes I made in Frost's NPC Record (changing the name of his saddle mesh) in the override plugin would override the Template by specifically changing his Default Outfit. But it didn't- it apparently applied the saddle to all "DefaultHorse3" which seems to be virtually all of them- every horse I see now in my game has a dildo saddle. That's what I'm trying to get rid of- the dildo saddle when the horses are just standing there with no rider.

 

I do love the conditional sex-check, to make the dildo appear only for female riders, but by the time an NPC becomes a "rider," the shaft is no longer visible and I don't care whether it's there or not. What I'm trying to do is just give Frost, and only Frost, the alternate saddle.

 

I'll finger it out. :classic_tongue: Thank you.

Posted
47 minutes ago, Bluegunk said:

I looked at the plug in. They are Nifs in Armor and in Armor Addon.  They are unique to the mod, not vanilla game ones.  

 

Anyone up for Slen or Horgasm???

OK, well, then I would have to install that mod and make a dildo-saddle specifically for their saddle. I'll take a look at Conniving Convenient Horses and see if I want it in my Load Order- last time I looked, I was at 351 mods...

 

And I concur- I wish somebody could connect Horgasm climax events to SL Aroused and hence to SLEN. I simply don't have the skillset needed to do that. ?

Posted

I'd say it's not worth waiting for someone else to put a modlist together when you could invest a part of that time into learning how to get a stable modlist yourself. It takes time and effort, yeah. But then you wouldn't need to wait or rely on other people's preferences to get something closer to what you want.

 

The same may be true the other way around, I don't see much interest in creating modlists for Wabbajack because then I would need to support and update them constantly and deal with feedback and requests and so on. So you're really depending on the goodwill of creators putting modlists together. Their motives and preferences will likely never align completely with yours.

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

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