Jump to content

Recommended Posts

21 hours ago, Garbage_Truck said:

Well is there another way to fix the problem of the bent schlong? I tried reinstalling but that didn't fix it.

By "bent schlong" you are talking about an erected schlong which is bent to the left or the right?

 

The "fix" was long ago incorporated into the Sexlab Framework so if you're experiencing that it's something new (or newer) breaking it.

Link to comment

hello looking for some help sorry im new to sexlab and modding. So I opened up a new save with this freshly installed and saw my character shlong was quite small so i went into the menu and clicked player settings and the size is greyed out and says SOSRACEMENU. I have the Racemenu mod installed, what is this SOSRACEMENU and where can i get it? THank you to anyone who replies.

Link to comment
2 hours ago, Veileno said:

hello looking for some help sorry im new to sexlab and modding. So I opened up a new save with this freshly installed and saw my character shlong was quite small so i went into the menu and clicked player settings and the size is greyed out and says SOSRACEMENU. I have the Racemenu mod installed, what is this SOSRACEMENU and where can i get it? THank you to anyone who replies.

It comes with the XPMSE Skeleton which is the only skeleton you should be using since it's the only one that supports all of the features of the mods here (exception, is that there are some newer creature skeletons now that should replace some of the XPMSE versions for the moment).

Link to comment
2 hours ago, KKSlider said:

i fucked something up and my player has a 50000 ft long misshapen triangle schlong. is there an option to set size/shape to default? racemenu isnt fixing it.

ScreenShot9.bmp 3 MB · 1 download

Re-install SOS or if you're using MO make sure it isn't being overwritten by anything except the XPMSE skeleton. 

 

And don't post BMP files, convert to JPG or PNG.  BMP files are bandwidth hogs and pretty much every browser refuses to render them.

Link to comment

I'm having a small issue regarding uninstalling an SOS addon mid playthrough. Yeah, I know you're not supposed to remove mods without starting a new game, but I'm replacing it with something better, so I had to do it. I know how to use the script cleaner anyway.

I'm just wondering if I can just ignore the "SOS Warning - SOS cannot find 1 schlong addon(s). The savegame data does not match the data from the SKSE co-save. There is a problem with these files or with something that has recently changed. If you want to fix it yourself yadda yadda. Now SOS will restore the lost data to the default values" message, or if I have to do something in order to make SOS 'forget' about the addon I just uninstalled. SOS in itself seems to be working just fine.

Link to comment
On 7/6/2019 at 10:18 PM, WaxenFigure said:

Re-install SOS or if you're using MO make sure it isn't being overwritten by anything except the XPMSE skeleton. 

 

And don't post BMP files, convert to JPG or PNG.  BMP files are bandwidth hogs and pretty much every browser refuses to render them.

thanks so much! this was the fix :)) i appreciate it:heart:

Link to comment
10 hours ago, DayTri said:

Is there a way to have my mod check the size of some NPC schlong?

 

This code from the Slaverun Reloaded mod should help

 

Spoiler

Scriptname SLV_SOSSchlong extends Quest  

function SLV_SchlongSize(Actor NPCActor, int size)
if Game.GetModByName("Schlongs of Skyrim.esp")!= 255 && MCMMenu.SOSSlaverSchlong
    SOS_API sos = SOS_API.Get()
    int oldmaxsize = sos.GetMaxSchlongSize()
    sos.SetMaxSchlongSize(20)
    sos.SetSize(NPCActor, size)
    Utility.wait(1.0)
    sos.SetMaxSchlongSize(oldmaxsize)
endif
EndFunction

function SLV_SlaverSchlong(Actor NPCActor)
if Game.GetModByName("Schlongs of Skyrim.esp")!= 255 && MCMMenu.SOSSlaverSchlong
    SOS_API sos = SOS_API.Get()
    int oldmaxsize = sos.GetMaxSchlongSize()
    sos.SetMaxSchlongSize(20)
    if sos.getSize(NPCActor) < 10
        sos.SetSize(NPCActor, 10)
    endif
    Utility.wait(1.0)
    sos.SetMaxSchlongSize(oldmaxsize)
endif
EndFunction

function SLV_IncleaseSchlong(Actor NPCActor)
if Game.GetModByName("Schlongs of Skyrim.esp")!= 255 && MCMMenu.SOSSlaverSchlong
    SOS_API sos = SOS_API.Get()
    int oldmaxsize = sos.GetMaxSchlongSize()
    sos.SetMaxSchlongSize(20)
    sos.SetSize(NPCActor, sos.getSize(NPCActor) + 1)
    Utility.wait(1.0)
    sos.SetMaxSchlongSize(oldmaxsize)
endif
EndFunction


int function SLV_GetSchlongSize(Actor NPCActor)
if Game.GetModByName("Schlongs of Skyrim.esp")!= 255 && MCMMenu.SOSSlaverSchlong
    SOS_API sos = SOS_API.Get()
    return sos.getSize(NPCActor)
endif
return 0
EndFunction

SLV_MCMMenu Property MCMMenu Auto

 

Link to comment

Hi! I'm having trouble with this mod and it's driving me crazy. Wondering if someone might be able to help. I'm trying to install it. NMM isn't an option because it's replaced by Vortex so I'm trying to do it manually. The image for manual installation says to copy-paste files from the folder into the data file, easy enough already done. Then it says to "enable Schlongs of Skyrim - Light.esp" in your mod manager"
Now, I'm not always the most literate when it comes to modding, but I'm trying lol. If I'm not using NMM or Vortex, and doing a manual installation, what mod manager is it referring to? Would anyone be willing to guide me in the right direction here? Thanks so much! 

Link to comment
19 hours ago, purplejubilee17 said:

Hi! I'm having trouble with this mod and it's driving me crazy. Wondering if someone might be able to help. I'm trying to install it. NMM isn't an option because it's replaced by Vortex so I'm trying to do it manually. The image for manual installation says to copy-paste files from the folder into the data file, easy enough already done. Then it says to "enable Schlongs of Skyrim - Light.esp" in your mod manager"
Now, I'm not always the most literate when it comes to modding, but I'm trying lol. If I'm not using NMM or Vortex, and doing a manual installation, what mod manager is it referring to? Would anyone be willing to guide me in the right direction here? Thanks so much! 

 

You probably clicked on the second picture instead of the first picture, the first one is SOS full and second one is SOS light.

 

sos-full-manual-install.jpg

Link to comment

hello, i am using the SE conversion of this mod (if that matters) and i am having a problem. So in the RaceMenu slider for males there is only ONE thing or whatever to edit, but for FEMALES there are the option thingies that should be there for the male. Any idea how this could be happening???

 

814067320_skyrimshitsos.png.89a254c5afdb6fe3479feef20308436c.png

Link to comment

hi, is it possible to make it so the balls can go all the way down without being stopped at a limit but also collisioning properly so they don't go trough the crotch ?  my issue is that while the balls physics are enjoyable while character is standing or doing doggy, the problem is that when pc does layed down positions, the balls animates but they never touch the skin like in real life. So to put it more clearly i would like the possibility for the balls to touch the crotch of the character who has it in order to make it flap more accurately

Link to comment

Hello!

 

I'm having a problem where all of the NPC males are wearing the leather underwear during scenes.  I can change the schlong to SMURF manually in the MCM before the scene.  But it only affects that NPC.   Every male seems to default to leather underwear until I change them.

 

SOS version 3.0.4

I have NPC Schlong Type Probability set to 100% in the GENERAL tab.

 

HELP!

Link to comment
On 6/20/2019 at 5:25 PM, Qaosh said:

For some reason, my game does not start with the regular file nor the old one. It only starts with the Lite version. Does anyone know why?

I've got the same problem. It only works with the light version. With the full version, my game doesn't start. Is the full version incompatible with Skyrim Special Edition???

Link to comment
5 hours ago, RumpelWhoknows said:

I've got the same problem. It only works with the light version. With the full version, my game doesn't start. Is the full version incompatible with Skyrim Special Edition???

 

Yes, the LE version is not compatible with the SE version because of the dll file that it uses.

 

However, the version available in the Special Edition part of the forum works just fine.

 

Link to comment

OK, so here's my problem. Whenever I try to get into the "Player / NPC Settings", the menu freezes and I have to back all the way out of the Esc menu to reset it. The other menus work fine, such as all the addons and General Settings. No amount of waiting lets it load. I've tried reinstalling: CBBE, SOS, SL, SOSRaceMenuPluggin, and XPMSE. I've tried disabling: SL, Romance, Aroused. I am using a personally edited skeleton, a body replacer (coldsteelj's "new bbw+"), the "SOS - double dick - male - female" replacer for the UNP addon, as well as Fair Skin textures. Everything was installed with NMM .63.xxx (or so), and I upgraded to .70.5 when I got back into modding Skyrim (now on .70.8). That wasn't when the problem started, however. At this point I just don't know what more to do. I can play the game fine, but I wanna see them schlongs, damnit! If anyone has any ideas, please share. Any help is appreciated!

Current Load Order as such from LOOT (with versions where I thought they would make sense) :

  0  0     Skyrim.esm
  1  1     Update.esm
  2  2     Dawnguard.esm
  3  3     HearthFires.esm
  4  4     Dragonborn.esm
  5  5     Unofficial Skyrim Legendary Edition Patch.esp
  6  6     Schlongs of Skyrim - Core.esm (v3.00.004)
  7  7     SexLab.esm (v1.62 Full)
  8  8     SexLabAroused.esm (v28b)
  9  9     HighResTexturePack01.esp
 10  a     HighResTexturePack02.esp
 11  b     HighResTexturePack03.esp
 12  c     MrBs-UniqueLootv200.esp
 13  d     Schlongs of Skyrim.esp
 14  e     aedric ritual remake.esp
 15  f     potionmoddragonborn.esp
 16 10     song of the alchemist - thegreylight.esp
 17 11     a hypothetical treachery - thegreylight.esp
 18 12     Remodeled Armor - Vanilla Replacer.esp (from Nexus, v6.2.0)
 19 13     RevealingArmorTest.esp (This one is my attempt to make all the armors and clothes in the game have the "SOS_Revealing" keyword, using TES5Edit. Tried with and without. Currently doesn't do much, as even with it activated, I can't see schlongs.)
 20 14     essential merchants.esp
 21 15     craftable vampire armors.esp
 22 16     dragonhiderobearmor.esp
 23 17     rbes enhanced 1st person camera bob - standard.esp
 24 18     thaum.esp
 25 19     helmetwithcircletormask.esp
 26 1a     dualcastingcostfixed.esp
 27 1b     easymine.esp
 28 1c     ts_enchantsmithelongurator.esp
 29 1d     avsjustarrows.esp
 30 1e     auto unequip ammo.esp
 31 1f     hapassiveraceabilities.esp
 32 20     smeltdown.esp
 33 21     hoodwithcirclet.esp
 34 22     spellsneak.esp
 35 23     revised assassin.esp
 36 24     blueglasst.esp
 37 25     logicaljewelry.esp
 38 26     nettlebane improved.esp
 39 27     barenziahquestmarkers.esp
 40 28     ysgramor's artifacts improved.esp
 41 29     auriel's bow improved.esp
 42 2a     theaviary.esp
 43 2b     thefrontier.esp
 44 2c     dragonmourninn.esp
 45 2d     chillrend improved.esp
 46 2e     thedomain.esp
 47 2f     adalmatar.esp
 48 30     levelingmerchantswallets.esp
 49 31     thane weapons improved.esp
 50 32     staff of magnus improved.esp
 51 33     PS_StandingStones.esp
 52 34     aetherial crown improved.esp
 53 35     marriable serana.esp
 54 36     DragonUnderWhiterun.esp
 55 37     harkon's sword improved.esp
 56 38     riverwoodsmelter.esp
 57 39     ancient helms improved.esp
 58 3a     blade of woe improved.esp
 59 3b     boundscalingdb.esp
 60 3c     greylight.esp
 61 3d     The Paarthurnax Dilemma.esp
 62 3e     bound weapons.esp
 63 3f     amulrinbuff.esp
 64 40     ritual steel - reanimation enchantment.esp
 65 41     thegreylight's zombie enchantment.esp
 66 42     larceny - pickpocketing remastered.esp
 67 43     thegreylight's summoning enchantment.esp
 68 44     herbaltea.esp
 69 45     roxynew.esp
 70 46     ktxcompleteskyforge.esp
 71 47     sniper's crossbow.esp
 72 48     tgl - mulaag.esp
 73 49     spelltomeconjureetherealhorse.esp
 74 4a     nightingale equipment improved.esp
 75 4b     poisoned - thegreylight.esp
 76 4c     withershins - restoration remastered - thegreylight.esp
 77 4d     levelled summons redux - thegreylight.esp
 78 4e     levelled summons redux dawnguard - thegreylight.esp
 79 4f     levelled summons redux dragonborn - thegreylight.esp
 80 50     better summoning visuals - thegreylight.esp
 81 51     tgl - spaan se faal dovahkiin.esp
 82 52     tgl qahnaarin.esp
 83 53     tgl - volaan.esp
 84 54     tgl - kinzon.esp
 85 55     zahkrii - sword of the dragonborn.esp
 86 56     tgl - hahkun.esp
 87 57     tgl - vahlok.esp
 88 58     tgl - kongrah.esp
 89 59     thegreylight's necrobow.esp
 90 5a     blood and fear - thegreylight's dark brotherhood shrouded armour replacer.esp
 91 5b     tower unlocked master's edition - thegreylight.esp
 92 5c     werebear beast form (non-replacer).esp
 93 5d     pyromage - thegreylight.esp
 94 5e     magessavossummon.esp
 95 5f     ultimatearchmage.esp
 96 60     pkg - arch-mage.esp
 97 61     dragonboneebonsteel.esp
 98 62     faction crossbows.esp
 99 63     dr_bandolier.esp
100 64     dr_bandolierdg.esp
101 65     a tale of tongues - nordic edition.esp
102 66     Celtic_Music_In_Skyrim_v2.1.esp
103 67     bosmerarmormaty743part4.esp
104 68     ktaancientshroudedarmor.esp
105 69     bloodskal blade improved.esp
106 6a     weightless crafted potions.esp
107 6b     summon well summon more - thegreylight.esp
108 6c     thegreylight's magic unbound - master's edition.esp
109 6d     greybeardrobes.esp
110 6e     bosmerarmormaty743part1.esp
111 6f     bosmerarmormaty743part2.esp
112 70     bosmerarmormaty743part3.esp
113 71     SkyUI.esp
           faceonlydragonmask.esp
114 72     nordic carved light dragonborn ed..esp
115 73     physiomancy.esp
           reoccurring nightmare.esp
116 74     dD - Realistic Ragdoll Force - Realistic.esp
117 75     CalienteVanillaArmorTweaks.esp
118 76     OCR-Fixes.esp
119 77     SOS - B3lisario Horsecock Addon.esp
120 78     Sorcerer Renamer.esp
           ringcontrol_eng.esp
121 79     EK_RingLimiter.esp
122 7a     falx items.esp
123 7b     better dragonborn armors.esp
124 7c     strongerstalhrimlightarmor.esp
125 7d     ancient falmer crown.esp
126 7e     nocommentdangermagic.esp
127 7f     nocommentnude.esp
128 80     nocommentstupiddog.esp
129 81     nocommenttrash.esp
130 82     nocommentweapon.esp
131 83     noreturnitem.esp
132 84     noguardweapon.esp
133 85     stopcommentflames.esp
134 86     stopguardshout.esp
135 87     draugr disarm removed v1.0.esp
136 88     ebony spellbreaker.esp
           hoodlessmaskistruecirclet.esp
137 89     UIExtensions.esp
138 8a     ElementalFuryFix.esp
139 8b     Giants.esp
140 8c     AddItemMenuLE.esp
141 8d     PS_InvisibleArmorCrafted.esp
142 8e     BodySlotsMCM.esp
143 8f     Dual Sheath Redux.esp
144 90     SexLab Inflation Framework.esp (v1.1.9b)
145 91     Skein of Magnus.esp
146 92     DragonBornCircletsWithCrownMageReady.esp
           dragonpriestmask_noface.esp
           dragonpriestmask_circlets.esp
147 93     Scent of Sex.esp (v1.4h)
148 94     MagicNipple.esp
149 95     FNIS.esp (v7.4.5)
150 96     Remodeled Armor - Vanilla Replacer - Dragonborn.esp
151 97     Remodeled Armor - Vanilla Replacer - Dawnguard.esp
152 98     RaceMenu.esp (from Nexus, v3.4.5)
153 99     RaceMenuPlugin.esp
154 9a     SexLab Romance.esp
155 9b     SexLabRomance_IgnoreGender.esp
156 9c     SOS - ERF - HighPoly Addon.esp
           SOS - ERF - HighPoly Equipable.esp
           SOSRaceMenu.esp
157 9d     12FemaleBrows.esp
158 9e     SOS - ERF Horse Penis CBBE - Addon.esp
159 9f     EggFactory.esp (v35a, not working either, but don't mind that here)
160 a0     white phial improved.esp
161 a1     gauldur amulet improved.esp
162 a2     SOS - B3lisario UNP Addon.esp
163 a3     SOS - VectorPlexus Muscular Addon.esp
164 a4     SOS - VectorPlexus Regular Addon.esp
165 a5     XPMSE.esp (from Nexus, v4.51)
166 a6     Dual Sheath Redux Patch.esp

 

 

 

 

 

EDIT: Well, it took about 8 hours but I fixed it. Switched to Mod Organizer 2 to help with the overwrite functionality, and completely reinstalled SOS. Didn't immediately help, but a lot of faffery later, it got fixed. Took some time to learn a completely new system. Just glad it's fixed. 

Link to comment
  • 2 weeks later...

Hi, I've been trying to follow the link and I'm still having issues on trying to download this content. There isn't anything for me to add to Nexus Mod Manager and I couldn't figure out how to do it manually. Is there a way to download it the new way into the Vortex?

 

EDIT: I am an idiot. Only took me two hours to notice the stupid green "DOWNLOAD" link to the very right of the page. *facepalm* Thanks for the help anyway!

Link to comment

I am using Male Dragonic Argonian Textures.  The argonians have the non-textured, SOS schlong when running around with an erection.  It changes to the Dragonic schlong during sex scenes.  Is there a way to make the Dragonic textures work during non sex scenes? 

Link to comment

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
  • Recently Browsing   1 member

×
×
  • 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