rylasasin Posted February 13, 2014 Posted February 13, 2014 Okay, so I have a problem.In my wip dialogue mod I want it so female characters will equip dildos (SCR) before sex (if they're giving). But I honestly have no clue how they are supposed to do that.The only example I have on me to base it off of is sexoutsex which seems to use a very dated version of it.
flutie Posted February 13, 2014 Posted February 13, 2014 i am not a modder but you could ask Borisni author of sexout strapon sex http://www.loverslab.com/topic/13901-sexoutstraponsex/?hl=%20strap for pointers, or PM prideslayer edit: this might help http://www.loverslab.com/topic/6982-the-sexoutng-api-how-to-for-modders/
ChancellorKremlin Posted February 13, 2014 Posted February 13, 2014 I imagine by using the same code as SexoutSex uses, but instead of equipping SexoutStrapOnSS or something like that, you equip the one you want. Dildo's will be weird to equip because they will act as penises and don't have straps to them, so they'll look like they're just hovering there.
Bloodfang Posted February 13, 2014 Posted February 13, 2014 I'm no modder either, but you could check Skyrim Creation Kit, and head to Eorlund Gray-Mane. During a quest, while he's talking, he suddenly carries a battleaxe. Maybe that will help you if you get to know how he gets to wield the weapon.
rylasasin Posted February 13, 2014 Author Posted February 13, 2014 I'm no modder either, but you could check Skyrim Creation Kit, and head to Eorlund Gray-Mane. During a quest, while he's talking, he suddenly carries a battleaxe. Maybe that will help you if you get to know how he gets to wield the weapon. Skyrim scripting is far different from Fallout scripting.
prideslayer Posted February 14, 2014 Posted February 14, 2014 You just... pick a strapon from the list, add it to the character inventory, and tell them to wear it like any other bit of armor. It's really simple. Here's an example. yourREF.additem SomeStrapon 1 yourREF.equipitem SomeStrapon 1 ; set sexout vars here like sextype, actora, etc.. yourREF.CIOS SexoutNGBegin Don't overthink things too much.
rylasasin Posted February 14, 2014 Author Posted February 14, 2014 You just... pick a strapon from the list, add it to the character inventory, and tell them to wear it like any other bit of armor. It's really simple. Here's an example. yourREF.additem SomeStrapon 1 yourREF.equipitem SomeStrapon 1 ; set sexout vars here like sextype, actora, etc.. yourREF.CIOS SexoutNGBegin Don't overthink things too much. okay, but how do I check to make sure a character has a strapon (when there's like several of them) and equip the one they have? I can't tell them to equip a formlist.
Halstrom Posted February 14, 2014 Posted February 14, 2014 We actually you sort of can, there's a formlist containing all the SCR Strap Ons in SCR called SexoutSLClothTypeStrapon I'm not sure if you can do this with a formlist rActor.GetItemCount SexoutSLClothTypeStrapon because I know you can do this with a formlist rActor.GetEquipped SexoutSLClothTypeStrapon Once you know they have one of those Strapons in the list then you need to poll through the list till you find the one they have to get it's ref.
ChancellorKremlin Posted February 14, 2014 Posted February 14, 2014 Didn't jaam also implement a function in the newest NVSE that randomly picks an item in a formlist? You could just put them all into a list and have it take a "random" one that fits your needs.
Bloodfang Posted February 14, 2014 Posted February 14, 2014 I'm no modder either, but you could check Skyrim Creation Kit, and head to Eorlund Gray-Mane. During a quest, while he's talking, he suddenly carries a battleaxe. Maybe that will help you if you get to know how he gets to wield the weapon. Skyrim scripting is far different from Fallout scripting. Wooops I'm really sorry, I thought I was in Skyrim General Discussion when I posted this !
TheArkady Posted February 14, 2014 Posted February 14, 2014 I'm pretty sure msex Veronica does equipping random strapons at times, you might want to try checking how it's done in there.
jaam Posted February 14, 2014 Posted February 14, 2014 set rPicked to someRef.PickOneOf SexoutSLClothTypeStrapon will randomly pick whichever strapon is in the someRef inventory.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.