tigglywiggly Posted February 26, 2021 Posted February 26, 2021 Hey all. Asked somewhere else but havent got a response yet. SLAL is no longer registering or even showing animation packs and is completely empty when scanned in its menu. Even with animation pack listed and registered in FNIS. Any tips?
ChosenVlor Posted February 27, 2021 Posted February 27, 2021 On 2/19/2021 at 2:00 AM, osmelmc said: The Strap-on on Females only are showed when the Female is on the Male position that means that the real FF Animations don't equip Strap-on. If the Animation have the FF tag but one of the positions is really for Male actors, is just wrongly tagged. To disable the Strap-on just disable the "Female Use Strap-ons" option on the "Animation Settings" page. PS: Some Lesbian Animations have "Double Dildos" and are not related with the Strap-on option Ive already disbled the strapon, however it just keeps appearing. Forcing a pegging animation anytime any animation were to play. And i have realized that for some reason every animation has by default set any player character into the female position, even if its a male character.
tasairis Posted February 27, 2021 Posted February 27, 2021 2 hours ago, ElPoporino said: It does have 350 lines (Took the files here ) , I think the lines are innacurate because the compilation adds the dependencies (same as is done with c++ programs), and I added a path to my steam library to take advantage of my recently acquired M2 drive. Maybe one of the callback functions calls a dependency added to the file, and that dependency cannot find what it's searching for, hence the problem. Even if that was the case, and I can't say for sure it is or isn't, those functions that the compiler says don't exist? I don't even see them being referenced in the sources. Upload one of those two files.
grape21 Posted February 27, 2021 Posted February 27, 2021 I've just downloaded SL frameworks, and it seems to have been implimented fine, however now comes the install part. I meet the requirements, and i should be able to install, yet the install button doesn't "seem" to do anything. is there an indication that it has worked or is working, or do i just stand still and wait 10 minutes and that's it. nevermind i figured it out, i'm an idiot.
ElPoporino Posted February 27, 2021 Posted February 27, 2021 15 hours ago, tasairis said: Even if that was the case, and I can't say for sure it is or isn't, those functions that the compiler says don't exist? I don't even see them being referenced in the sources. Upload one of those two files. Problem not fixed, but i tried using the creation kit along with MO2 instead of compiling straight from the sources and the compilation succeded. Thanks a lot for trying to help tho.
zarantha Posted February 27, 2021 Posted February 27, 2021 2 hours ago, ElPoporino said: Problem not fixed, but i tried using the creation kit along with MO2 instead of compiling straight from the sources and the compilation succeded. Thanks a lot for trying to help tho. Fwiw, I've switched to the papyrus compiler app here, and it seems to be working pretty well for me. If the CK is working, this might work for you if you don't want to load the CK every time. https://www.nexusmods.com/skyrimspecialedition/mods/23852 It has options to run with and without the VFS in MO2. I added it as an app like FNIS, and run with the VFS, so I don't check that last option. Spoiler
r3L4xr3L4x Posted February 27, 2021 Posted February 27, 2021 Hi guys, bit thanks to mod developer! I have one small issue, or it is possible to delay dressing up after normal animation for partner? For aggressive animations I know there is option to turn of dressing up.
tasairis Posted February 27, 2021 Posted February 27, 2021 2 hours ago, r3L4xr3L4x said: Hi guys, bit thanks to mod developer! I have one small issue, or it is possible to delay dressing up after normal animation for partner? For aggressive animations I know there is option to turn of dressing up. Could control it yourself using hooks. Strip the actors, either before starting the animation, or create a thread with stripping disabled and strip them at the Start event, then when the End event happens you wait a bit and unstrip them. 1
r3L4xr3L4x Posted February 27, 2021 Posted February 27, 2021 1 hour ago, tasairis said: Could control it yourself using hooks. Strip the actors, either before starting the animation, or create a thread with stripping disabled and strip them at the Start event, then when the End event happens you wait a bit and unstrip them. Hi you are talking about this one? https://www.nexusmods.com/skyrimspecialedition/mods/25704
tasairis Posted February 27, 2021 Posted February 27, 2021 28 minutes ago, r3L4xr3L4x said: Hi you are talking about this one? https://www.nexusmods.com/skyrimspecialedition/mods/25704 I'm talking about SexLab's own hook system. It's somewhat documented in SexLabFramework.psc.
Sailing Rebel Posted March 1, 2021 Posted March 1, 2021 On 2/25/2021 at 9:37 PM, tasairis said: The version check is valid, though StringUtil.Split and checking [0] = "1", [1] = "5", [2] >= 97 would be better @osmelmc Just been looking at implementing a means of more robustly comparing typical release version strings. This is a first working pass: ; Compare two version strings ; Return: ; -1 version is earlier than match ; 0 version is current with match ; 1 version is later than match ; Examples: ; VersionCompare("1.5.97", "1.5.80") returns 1 ; VersionCompare("1.5.97", "1.5") returns 0 ; VersionCompare("1.5.97", "1.6") returns -1 ; Only available parts are matched so: ; VersionCompare("1.5", "1.5.97") returns 0 Int Function VersionCompare(String version, String match) String[] verParts = GetVersionParts(version) String[] matchParts = GetVersionParts(match) ; Available match parts must be less than version parts Int i = 0 While i < matchParts.Length && i < verParts.Length If verParts[i] as Int > matchParts[i] as Int Return 1 ElseIf verParts[i] as Int < matchParts[i] as Int Return -1 EndIf i += 1 EndWhile Return 0 EndFunction ; Break up version string into period-delimited parts after removing junk parts. String[] Function GetVersionParts(String version) ; Remove anything to the left of the first digit Int i = 0 Int verLength = StringUtil.GetLength(version) While i < verLength String char = StringUtil.GetNthChar(version, i) If StringUtil.IsDigit(char) version = StringUtil.SubString(version, i, -1) i = verLength EndIf i += 1 EndWhile ; Remove anything to the right of the last consecutive digit+period i = 0 verLength = StringUtil.GetLength(version) While i < verLength String char = StringUtil.GetNthChar(version, i) If char != "." && !StringUtil.IsDigit(char) version = StringUtil.SubString(version, 0, i) i = verLength EndIf i += 1 EndWhile ; This will return nonsense for version strings containing spurious digits. ; e.g. "M0r3B34ns v1.1" Return PapyrusUtil.StringSplit(version, ".") EndFunction Obviously much more complicated but will work where the substring -> float cast would fail in sslSystemConfig.psc CheckSystem(), i.e. "1.6" vs "1.56". But here's the thing: maybe we should not bother looking at Debug.GetVersionNumber() at all since we can infer the installed Skyrim version from the SKSE script version. If there is a mismatch between Skyrim and SKSE then the user will have other problems to deal with before getting SL functioning.
Ashal Posted March 1, 2021 Author Posted March 1, 2021 27 minutes ago, Sailing Rebel said: But here's the thing: maybe we should not bother looking at Debug.GetVersionNumber() at all since we can infer the installed Skyrim version from the SKSE script version. If there is a mismatch between Skyrim and SKSE then the user will have other problems to deal with before getting SL functioning. Exactly why I haven't cared much about updating t he messagebox version number. It's pretty much pointless and only relevant in the final release. The SKSE check is the only check that matters. Besides maybe the check for FNIIS existing. 3
4nk8r Posted March 2, 2021 Posted March 2, 2021 32 minutes ago, Tapestry11 said: Does this work with devious devices? Yes
OsmelMC Posted March 3, 2021 Posted March 3, 2021 On 3/1/2021 at 11:10 AM, Sailing Rebel said: But here's the thing: maybe we should not bother looking at Debug.GetVersionNumber() at all since we can infer the installed Skyrim version from the SKSE script version. If there is a mismatch between Skyrim and SKSE then the user will have other problems to deal with before getting SL functioning That's true. So in this case is better remove the version check for the Skyrim, in fact don't really matter. Because in theory if some previos Skyrim by chance allow the required SKSE version them SexLab will run without problem anyway.
OsmelMC Posted March 3, 2021 Posted March 3, 2021 On 2/26/2021 at 7:02 PM, ChosenVlor said: Ive already disbled the strapon, however it just keeps appearing. Forcing a pegging animation anytime any animation were to play. And i have realized that for some reason every animation has by default set any player character into the female position, even if its a male character. You need my tweak or the SexLab GitHub version to deal with the gender position issue because the released SexLab Framework don't deal with the gender position letting that part for the external Mods and of course not all the Mod check the gender position.
verdunqq11 Posted March 4, 2021 Posted March 4, 2021 Well after keywording it a few times, and not being able to locate anything, I figured I might as well ask, given it is a very specific use case. I noticed that during start up, there isn't a Sabre Cat, nor a Gargoyle voice slot. During Animations, both creatures are voiceless? Moanless? After playing around for a bit (Being a total novice, of course) I ended up Referencing a decompiled sslVoiceDefaults, which evidently has references to basically every creature in Skyrim- except the Sabre Cat, or Gargoyle. I can understand the Gargoyle to some extent (As it would probably cause dependencies with Skyrim DLC's, though I'm sure for many people it would be a welcome addition), but I was still curious: have you any plans to add Sabre Cat or Gargoyle voice slots into Sexlab, or should I give up any hope of that and try to "figure it out" (IE just forget about it) myself? (Also I did plenty of digging for a mod that would fix this issue, and found nothing. So if there IS a mod that elevates this issue, I'd be more than happy that its a "My own Ineptitude" over anything else.)
oyveyaycaramba Posted March 5, 2021 Posted March 5, 2021 When using Rapespell, only anal animations get played, and both my futa character and the male doing the raping just play the same animation (both just humping nothing). Any way to fix this? Currently using SOS, Gender Bender with UNP. Setting PC to "female" in Sexlab menu didn't help.
LegendOfJan Posted March 5, 2021 Posted March 5, 2021 Does sexlab have anything running in the background that could be used as a hook/detection for Dynamic Animation Replacer?
oyveyaycaramba Posted March 5, 2021 Posted March 5, 2021 Upon further testing, I've found that the issue applies when attempting to do any animation with another male. Both futa and male just humping air or standing on the spot. Again, using SoS and Genderbender with UNP (since SoS won't detect CBBE Futa for some reason despite it working before) Would really appreciate it if someone could help. Thanks
OsmelMC Posted March 5, 2021 Posted March 5, 2021 5 hours ago, oyveyaycaramba said: When using Rapespell, only anal animations get played, and both my futa character and the male doing the raping just play the same animation (both just humping nothing). Any way to fix this? Currently using SOS, Gender Bender with UNP. Setting PC to "female" in Sexlab menu didn't help. The current SexLab version can't handle Futa Animations. I'm testing the new Futa functions on my "SexLab Utility Plus" and any comments is appreciated because I don't have Futa Actors to test my self.
OsmelMC Posted March 5, 2021 Posted March 5, 2021 On 3/4/2021 at 6:16 PM, verdunqq11 said: Well after keywording it a few times, and not being able to locate anything, I figured I might as well ask, given it is a very specific use case. I noticed that during start up, there isn't a Sabre Cat, nor a Gargoyle voice slot. During Animations, both creatures are voiceless? Moanless? After playing around for a bit (Being a total novice, of course) I ended up Referencing a decompiled sslVoiceDefaults, which evidently has references to basically every creature in Skyrim- except the Sabre Cat, or Gargoyle. I can understand the Gargoyle to some extent (As it would probably cause dependencies with Skyrim DLC's, though I'm sure for many people it would be a welcome addition), but I was still curious: have you any plans to add Sabre Cat or Gargoyle voice slots into Sexlab, or should I give up any hope of that and try to "figure it out" (IE just forget about it) myself? (Also I did plenty of digging for a mod that would fix this issue, and found nothing. So if there IS a mod that elevates this issue, I'd be more than happy that its a "My own Ineptitude" over anything else.) I checked it and is not just the saber cat and the gargoyle also the Atronash and few other's. The worst is, I don't find any mod Available to fix that so someone will need to do that.
giancarlitto Posted March 5, 2021 Posted March 5, 2021 hi everyone, i'm new to skyrim and modding. i can't seem to be able to install sexlab in game, i click install on the mcm, back out of the menus, and wait still without doing nothing (camera revolving around character and all that). nothing happens. if i'm not mistaken i'm supposed to be getting a notification on screen confirming it's all set up right? i've tried multiple game sessions waiting for 10/15 minutes everytime but no dice. i've reinstalled fnis, sexlab and some animations i've deownloaded a couple times now and it didn't solve the problem (although fnis gives me 24 warnings and i have no clue what to do about it) any help? thanks in advance!
DocClox Posted March 5, 2021 Posted March 5, 2021 Is there a way to set up an animation so it won't be selected unless some tag is explicitly specified? I've got this girl-in-a-jar pillory set up as an animated object, but it looks a bit silly when it turns up out of context.
Sailing Rebel Posted March 5, 2021 Posted March 5, 2021 11 minutes ago, giancarlitto said: hi everyone, i'm new to skyrim and modding. i can't seem to be able to install sexlab in game, i click install on the mcm, back out of the menus, and wait still without doing nothing (camera revolving around character and all that). nothing happens. if i'm not mistaken i'm supposed to be getting a notification on screen confirming it's all set up right? i've tried multiple game sessions waiting for 10/15 minutes everytime but no dice. What do you see when going back into the MCM after a few minutes? Perhaps the notification was too quick. If there are still issues then you will need to post a Papyrus log for a game in which you encounter this issue. 15 minutes ago, giancarlitto said: although fnis gives me 24 warnings and i have no clue what to do about it You will need to sort that out. The warnings typically indicate what to do about them. For instance if there are incompatible animations then uninstall the mods adding them. Optionally install a compatible versions of those mods.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now