Jump to content

{REDUNDANT} Non SexLab Animation Pack


Recommended Posts

Posted

Rydin - thanks a lot for all your efforts you put in this mod, support you gave and friendly attitude in helping us to fix the problem. I personally apologize whenever I was the pain in your ass. You are good man and I wish you all the fun you can have in your RL. You rock.

Posted

Thanks for modpack,actully improved  a quite sexlab and thanks for all collaborators became very interesting.

I hope that you can organize your setbacks and when you have a little time in a near future continue with updates..

Once again thank you :cool:

Posted

You take ya time bud, RL before game time. Wish you all the best and will look forward to ya return. The work you have done is fantastic and is the only one I use...

Posted

Thanks rydin for all your hard work... However the download link appears to be broken at the moment. Anyone else having trouble?

Download worked fine for me, may have been a momentary blip when you tried it.

Posted

Take a look at this mod.

 

A Closer Look - Simple Smooth Hotkey Zoom at Skyrim Nexus - mods and community

 

I've noticed that with the "furniture" animations, the zoom doesn't work. TFC works but not the scroll wheel doesn't. Once I started using this, it does.

Most likely the mod you have fixes some sort of bug or limitation as NSAP doesn't touch the camera controls. Certainly benefitial to those who require the zoom over the free camera.

Posted

 

Is there anyway to add a animation to this mod from animations by Leito The Stripping Nonconsensual?

No. These animations don't fit with how NSAP currently functions.

 

But if to look at this from other side, why not? It can be used as a foreplay animation. But maybe it is too short for this. I don't know, is it technically possible to code short foreplay animation, which has only one stage, and which plays only once?

Posted

 

But if to look at this from other side, why not? It can be used as a foreplay animation. But maybe it is too short for this. I don't know, is it technically possible to code short foreplay animation, which has only one stage, and which plays only once?

 

It's possible to add it but it doesn't work for what NSAP is for. NSAP is for animation sets with stages, not singular one-off animations/idles.

 

The stripping animation used in Sexlab by default is not an animation you can call upon through Sexlab on it's as foreplay. This is more an idle that should be used perhaps in mods before animations are called on from SexLab or NSAP, not a foreplay animation.

 

Please take note I never said it wasn't possible to add. I said it doesn't fit with what NSAP currently is and does. It's also worth noting that the peeing idles/animations by Leito are not in NSAP either for the exact same reason.

Posted

It's possible to add it but it doesn't work for what NSAP is for. NSAP is for animation sets with stages, not singular one-off animations/idles.

 

The stripping animation used in Sexlab by default is not an animation you can call upon through Sexlab on it's as foreplay. This is more an idle that should be used perhaps in mods before animations are called on from SexLab or NSAP, not a foreplay animation.

 

Please take note I never said it wasn't possible to add. I said it doesn't fit with what NSAP currently is and does. It's also worth noting that the peeing idles/animations by Leito are not in NSAP either for the exact same reason.

I have thought, and now i agree with you.

Yes, you are right, that it will have no sense as foreplay animation, because SexLab default undressing animation will be already played before it and clothes will be already removed from female before starting of this animation, so using it as foreplay will look weird and unfitting.

Posted

Yeah man, I was a bit impressed with the idea of this mod.  All these awesome mod authors making resources for animations to add to the game.  Then you grab them and combine to use with Ashal's kickass Sexlab Framework.  I bet you didn't think these guys would come up with new shit so often, eh?  Yikes, it's amazing how much content is available and still new stuff pops up often.

 

I have to say, this mod you put together with a group of animators' work is just so damn nice to have.  I haven't kept up with the forums, but it seems like you're taking a well needed break.  Good deal.  There's plenty to enjoy for a long time.  I'm very guilty of not saying thank you enough to the mod authors and contributors.  So thanks, man.  Take it easy.

Posted

 

It's possible to add it but it doesn't work for what NSAP is for. NSAP is for animation sets with stages, not singular one-off animations/idles.

 

The stripping animation used in Sexlab by default is not an animation you can call upon through Sexlab on it's as foreplay. This is more an idle that should be used perhaps in mods before animations are called on from SexLab or NSAP, not a foreplay animation.

 

Please take note I never said it wasn't possible to add. I said it doesn't fit with what NSAP currently is and does. It's also worth noting that the peeing idles/animations by Leito are not in NSAP either for the exact same reason.

I have thought, and now i agree with you.

Yes, you are right, that it will have no sense as foreplay animation, because SexLab default undressing animation will be already played before it and clothes will be already removed from female before starting of this animation, so using it as foreplay will look weird and unfitting.

 

It would be good if SexLab can identify when a consensual animation and non-nonconsenual animation is used which can they lead to using these idles. Even if it was an individual mode preparing for a non-consensual anmation, it can use this idle to start with and disable the consensual idle in it's replacement. I don't have a mod in mind to give an example but it is easily done.

 

No worries, I apprciate your question but I'm glad you can understand my reasoning.

 

Posted

There is a way that you can make an option to generate "customs sets", taking parts of other scenes, i.e. leito cowgirl scene 1, leito reverse cowgirl scene 3, arrok whatever scene 5. etc.

Posted

Hello @plutarco, you can do it if you do a small mod on your own.

 

The rule is: create the animation registration script. Something like:

 

Scriptname myAnimationsScript extends sslAnimationFactory  

function RegisterNewAnimations()
  PrepareFactory()
  RegisterAnimation("myAnim")
endFunction

function myAnim(int id)
  sslBaseAnimation Base = Create(id)
  Base.Name = "This is the name of the anim"

  Base.SetContent(Sexual)
  Base.SoundFX = Squishing

  int a1 = Base.AddPosition(Female, addCum=Vaginal)
  Base.AddPositionStage(a1, "4D_3some_A1_S1", 0, silent=true, openMouth = true)
  Base.AddPositionStage(a1, "3j_anal_f1", 0)
  Base.AddPositionStage(a1, "3j_cowgirl_a1_s2", 0)
  Base.AddPositionStage(a1, "3j_cowgirl_a1_s3", 0)

  int a2 = Base.AddPosition(Male)
  Base.AddPositionStage(a2, "4D_3some_A2_S1", 0)
  Base.AddPositionStage(a2, "3j_anal_m1", 0, sos = 4)
  Base.AddPositionStage(a2, "3j_cowgirl_a2_s2", 0, sos = 6)
  Base.AddPositionStage(a2, "3j_cowgirl_a2_s3", 0, sos = 6)

  Base.AddTag("Blowjob")
  Base.AddTag("Vaginal")
  Base.AddTag("Anal")
  Base.AddTag("Sex")
  Base.AddTag("MF")

  Base.Save(id)
endFunction
 
And then run the RegisterNewAnimations() function. (OnInit event or similar)
 
Please use as much as possible paired animations, or the result will be really odd.
 
Posted

There is a way that you can make an option to generate "customs sets", taking parts of other scenes, i.e. leito cowgirl scene 1, leito reverse cowgirl scene 3, arrok whatever scene 5. etc.

 

As @CPU says you would need to script and mod this yourself. The reason I stick to what the resource packs give me is that by creating custom sets by different animators makes the amount if animation combination limitless and opens up the door to problems of trying to cater every request. I do not mind combining idles and animations, but as long is it brings something fresh and not just another reused scene as long as permission is granted.

Posted

Hey Rydin!

 

My game seems to crash whenever I install this. I have like 253 mods (2 away from the limit but that probably doesn't even matter) The last 2 things in my log are:

[04/29/2015 - 04:45:24PM] [nsapsslmcm <NSAPMCMQuest (A7000D62)>] INITIALIZED
[04/29/2015 - 04:45:24PM] NSAP: updating MCM script to v2.3.
 
And then the game crashes. Is there something wrong? I have SkyUI v4.1.
Posted

 

Hey Rydin!

 

My game seems to crash whenever I install this. I have like 253 mods (2 away from the limit but that probably doesn't even matter) The last 2 things in my log are:

[04/29/2015 - 04:45:24PM] [nsapsslmcm <NSAPMCMQuest (A7000D62)>] INITIALIZED
[04/29/2015 - 04:45:24PM] NSAP: updating MCM script to v2.3.
 
And then the game crashes. Is there something wrong? I have SkyUI v4.1.

 

 

I'm afraid this isn't enough information. I can't tell what's going on with these two lines in the rest of your load. It could be something that's happened earlier in your load. I need the full log and your load order to see what you have, what order and what's causing it. Also, if you uninstall/unselect NSAP from your load order, do you still crash?

 

Posted

could just be the memory wall.

 

Once the game is loaded to the main menu, instead of trying to load a save, go to console and type 

 

coc qasmoke

 

load into that cell for a minute and then try to load your last save from there. 

Posted

hi, how do i start the mastubating with item animation? my character never change to it, only got 2 from SL framework only, and inside SL setting also no option to choose mastubating animation?

Posted

hi, how do i start the mastubating with item animation? my character never change to it, only got 2 from SL framework only, and inside SL setting also no option to choose mastubating animation?

It can only be started through Sexlabs test animation. There is no mod I am aware of yet that utilizes the animation.

Posted

 

hi, how do i start the mastubating with item animation? my character never change to it, only got 2 from SL framework only, and inside SL setting also no option to choose mastubating animation?

It can only be started through Sexlabs test animation. There is no mod I am aware of yet that utilizes the animation.

 

 

I've seen the mastubating with potion bottle one triggered by versh more devious quests mod if thats one of the 2 your after

 

 

 

2015_05_03_00001.jpg

2015_05_03_00002.jpg

2015_05_03_00003.jpg

 

 

 

Posted

Before someone mentions it, I've seen Leito's new update and I will add them soon. ^^

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   0 members

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