Jump to content

[Search] what outfit/Pose is this?


Recommended Posts

Posted

Pose is from GSPoses.

 

Use a script to more quickly browse through the 567 animations to find the correct one:

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

 

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