Jump to content

Recommended Posts

Posted
View File

PUBLIC POSER SE

 

This is an EMPTY POSER. There are NO POSES in this mod by default. This is a mod of 15 empty pose modules (1250 empty pose slots) for pose makers to put their poses into.

 

 

 

Credits

Halofarm for giving me permission to share this with you guys

 

Please don't bother Halofarm via his own page about this SSE port.


  • Submitter
  • Submitted
    12/07/2017
  • Category
  • Requires
    FNIS SE
  • Regular Edition Compatible
    No

 

  • 1 year later...
Posted

I know that this is an empty mod that I need to put the animations in. When I click the "check consistency," it lists the slots that aren't used as consistency issues, and I'm wondering if the mod will work normally?

  • 9 months later...
Posted

is this a case of plug and play animations?

 

I like some poses in most mods but never all... Be nice if I could just collect the ones I like.

  • 5 years later...
Posted

A couple years late, but I wrote a powershell script to rename all animation files in the same folder to the naming convection for this mod. so run the script in the folder to rename then run nemesis/pandora and you can use the poses ingame

 

# Use the folder the script is run from
$folder = Get-Location

# Loop over all valid name combinations
for ($i = 1; $i -le 15; $i++) {
    for ($j = 1; $j -le 81; $j++) {
        # Build the target filename: no padding on $i, zero-padded $j
        $newName = "$i" + "PUB" + ("{0:D2}" -f $j) + ".hkx"
        $newPath = Join-Path $folder $newName

        # Skip if the file already exists
        if (Test-Path $newPath) {
            continue
        }

        # Get the next .hkx file that is not already correctly named
        $originalFile = Get-ChildItem -Path $folder -Filter *.hkx |
            Where-Object { $_.Name -notmatch "^\d+PUB\d{2}\.hkx$" } |
            Select-Object -First 1

        # If no more files to rename, exit
        if (-not $originalFile) {
            Write-Host "No more files left to rename."
            return
        }

        # Rename the file
        Rename-Item -Path $originalFile.FullName -NewName $newName
        Write-Host "Renamed '$($originalFile.Name)' to '$newName'"
    }
}

 

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