Jump to content

I need the mod name of these poses/movements


Recommended Posts

Posted

Im trying to find which mod has the same poses like this video, i have found some but is not what i am looking for. 

 

 

 

Posted
20 minutes ago, traison said:

Those are all from GSPoses.

 

God bless u

Posted (edited)

Since there's somewhere around 567 animations in that pack, I made a script that automatically previews all of them in order. Allows you to just sit back and watch, and make notes of the animations you want to use:

Function PlayGsPoses(Actor who)
    ; GS# where # is 1 to 567, both inclusive
    ; playidle gsfnis#
    
    While (Counter1.Value < 567)
        Counter1.Value = Counter1.Value + 1
        
        string anim = "GS" + Counter1.Value As int
        Debug.Notification("Playing " + anim)
        Debug.SendAnimationEvent(who, anim)
        
        Utility.Wait(4.0)
    EndWhile
    
    Debug.SendAnimationEvent(who, "IdleForceDefaultState")
EndFunction

 

Where Counter1 is a GV, and who is obviously the actor to play the animations on. A GV is used for the index to allow resuming the preview from n+1, as well as providing a way out of the loop by setting the GV to something higher than 566.

 

As the comment in that function states, to play a single animation, use playidle and replace the # with the animation number:

prid 14
playidle gsfnis1
playidle gsfnis100
playidle gsfnis500

 

Edited by traison

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...