Make a copy of your original bin.bat elsewhere for safety............then:
Remove these lines:
@if "%1"=="" (
echo Usage: bin ksign
goto :EndOfFile
)
The file should now look like this:
@echo off
@rem Model file optimization
rem Cemove current content
rd /s /q Opt\%1
rem Create target directory
mkdir Opt\%1
rem Perform binarization
binarize -textures=Opt -exclude=Opt\exclude.lst %1 Opt\%1
rem Copy all except model and textures
xcopy %1 Opt\%1 /exclude:exclude.txt
rem Note: textures referenced from other addons or pbo files
rem can be found in corresponding Opt subdirectories (like Opt/Data)
:EndOfFile
Save the file.
You must have your addon file, with All its associated files in its own folder.
This folder should be copied into the Binarize folder.
Open an MSDOS prompt and change dorectory to your Binarize folder, then:
Then type in ... bin youraddonfoldername
Hit Enter.
Hope this now works
Planck