TRX_Trixter Posted February 3, 2025 Posted February 3, 2025 Problem: I my mod i need for some cases play moan sounds (for males and females) but i need to take that sound from player SL settings and do this not inside SexLab animation. How i can do this? I mean in script. For example in magiceffect (swcript archetype) of custom player ability.
Hex Bolt Posted February 3, 2025 Posted February 3, 2025 57 minutes ago, TRX_Trixter said: I my mod i need for some cases play moan sounds (for males and females) but i need to take that sound from player SL settings and do this not inside SexLab animation. zadLibs property libs auto Actor anActor = some actor libs.SexlabMoan(anActor) 2
TRX_Trixter Posted February 3, 2025 Author Posted February 3, 2025 1 hour ago, Hex Bolt said: zadLibs property libs auto Actor anActor = some actor libs.SexlabMoan(anActor) zadLibs - as i understand this script is not from SexLab package? But SexLab itsef has any function of this kind - SexlabMoan(anActor)? Im searching solution based on SL scripts only.
Hex Bolt Posted February 4, 2025 Posted February 4, 2025 (edited) 57 minutes ago, TRX_Trixter said: zadLibs - as i understand this script is not from SexLab package? But SexLab itsef has any function of this kind - SexlabMoan(anActor)? Im searching solution based on SL scripts only. I'm sorry, yes you did say that. However, you can use the function in zadLibs (with thanks to Kimy) as your example: SexLabFramework property SexLab auto ; If you want to use Aroused; otherwise, choose an arousal, such as 100. slaFrameworkScrProperty Aroused Auto int arousal = Aroused.GetActorExposure(anActor); (Or just use 100 or other value) sslBaseVoice voice = SexLab.PickVoice(anActor) voice.Moan(anActor, arousal) Edited February 4, 2025 by Hex Bolt 1
TRX_Trixter Posted February 4, 2025 Author Posted February 4, 2025 (edited) 1 hour ago, Hex Bolt said: However, you can use the function in zadLibs (with thanks to Kimy) as your example: Sure i can and Kimy's work with DD code is fantastic. Still learn a lot of things from there but my current goal is to make list of requiremens as short as it possible on alpha version stage. Thats why i try to do all thing with native functions from SL SLA and SOS. Yep, thats it! Thank you for your time and help! Edited February 4, 2025 by TRX_Trixter
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