神ツール出たのでPAKファイルバラすこともないかと思うが、キャラフォルダの設定一括変更スクリプト
- chara.xml中のPC〜のCamHとCamRの属性値を-50に設定(おま環かもしれないがマイナス値で起動失敗することあった)
- charbase.xml中のpeep〜の2つの属性を削除
gust_toolsからgust_enc.exeとgust_enc.jsonをsaves/charaフォルダにコピーして使います
実行して「続行するには、Enter キーを押してください...:」だけ出れば成功
お約束だが自己責任でお願いします

↓↓この次の行から最後までコピーしてBATファイルに貼り付け↓↓
@powershell -NoProfile -ExecutionPolicy Unrestricted "$s=[scriptblock]::create((gc \"%~f0\"|?{$_.readcount -gt 1})-join\"`n\");&$s" %*&goto:eof

if (-not (Test-Path "gust_enc.exe") -or -not (Test-Path "gust_enc.json")) {
Write-Host copy gust_enc.exe and gust_enc.json here.
Pause
Exit
}

$target = "chara.xml"
$xmlDoc = [xml](Get-Content $target)
if (-not (Test-Path ($target + ".bak"))) {
Copy-Item $target ($target + ".bak")
}
foreach($chara in $xmlDoc.Root.Chara) {
if ($chara.BaseTag.StartsWith("PC")) {
$chara.CamH = "-50"
$chara.CamR = "-50"
}
}
$xmlDoc.Save($target)
Start-Process -FilePath ./gust_enc.exe -ArgumentList "-A21 $target" -Wait

$target = "charabase.xml"
$xmlDoc = [xml](Get-Content $target)
if (-not (Test-Path ($target + ".bak"))) {
Copy-Item $target ($target + ".bak")
}
foreach($chara in $xmlDoc.Root.CharaBase) {
if ($chara.GetAttribute("peep_hipsSpine")) {
$chara.RemoveAttribute("peep_hipsSpine")
$chara.RemoveAttribute("peep_legUpleg")
}
}
$xmlDoc.Save($target)
Start-Process -FilePath ./gust_enc.exe -ArgumentList "-A21 $target" -Wait

Pause