ちょっとPowershellが全ての環境で動くか怪しいがカメラパラメータ書き換えるスクリプト
>>492を参考に値を変更してみただけなので自分でチューニングしてください

ファイルを無条件に書き換えちゃうので事前にcameraparamフォルダごとコピーして退避したほうが無難
下記の内容のBATファイル作ってcameraparamフォルダに置いて実行する
学校のカメラパラメータだけなので必要に応じてファイルの一覧にフィールド用XMLファイルを追加してください
gust_enc.exeをcameraparamフォルダに置いたら「#Start-Process〜」の#を消せば.eも作ってくれる

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

$xmlFiles =
"st200_00_outdoor.xml",
"st200_02_floor_2.xml",
"st200_03_gymnasium.xml",
"st200_04_classroom_a.xml",
"st200_05_classroom_b.xml",
"st200_06_dispensary.xml",
"st200_07_workshop.xml",
"st200_08_broadcasting_room.xml",
"st200_09_locker_room.xml",
"st200_10_libary.xml"

foreach ($xml in $xmlFiles) {
Write-Host $xml
$xmlDoc = [xml](Get-Content $xml)
$xmlDoc.root.free_camera.base_setting.pitch_min = "-80.0"
$xmlDoc.root.free_camera.base_setting.pitch_max = "80.0"
$xmlDoc.root.free_camera.base_setting.length_min = "80.0"
$xmlDoc.root.free_camera.base_setting.length_max = "550.0"
$xmlDoc.root.free_camera.camera_func.look_up.look_up_start_pitch = "-180.0"
$xmlDoc.Save($xml)
#Start-Process -FilePath ./gust_enc.exe -ArgumentList "-A21 $xml" -Wait
}
Pause