Daymarr Posted December 7, 2017 Posted December 7, 2017 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 Andreis Submitted 12/07/2017 Category Adult Mods Requires FNIS SE Regular Edition Compatible No 1
setsuna.san Posted May 6, 2019 Posted May 6, 2019 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?
Tags Posted February 13, 2020 Posted February 13, 2020 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.
SphereOfDestruction Posted August 23, 2025 Posted August 23, 2025 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'" } }
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