The VG Resource

Full Version: Batch TPL Converter
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Anybody know of a good one?
I'm getting back to Kirby's Dream Collection again
and would really appreciate it.
Wiimms SZS Toolset is a good one. You can create a batch file inorder to rip multiple TPL files to PNG files.
(09-18-2015, 08:12 PM)ThatTrueStruggle Wrote: [ -> ]Wiimms SZS Toolset is a good one. You can create a batch file inorder to rip multiple TPL files to PNG files.

How exactly?
Code:
wimgt copy *.tpl *.png
I think that'll work
(09-18-2015, 10:03 PM)ThatTrueStruggle Wrote: [ -> ]
Code:
wimgt copy *.tpl *.png
I think that'll work

Welp, it won't work. Ran it, only dispenses the first image
with no name. Try not to rush yourself!!!!! Content
Code:
set WIMGT = wimgt.exe
for %%f in (*.tpl) do WIMGT cp %%f %%f.png
pause
(09-23-2015, 05:08 PM)TGE Wrote: [ -> ]
Code:
for %%f in (*.tpl) do wimgt.exe cp %%f %~n1f.png

It is giving me a "FILE ALREADY EXISTS" error. Unimpressed
What should I do?
I modified the code in the prev. post. The program acts a bit oddly though.
(09-24-2015, 04:35 AM)TGE Wrote: [ -> ]I modified the code in the prev. post. The program acts a bit oddly though.
Thanks a lot! I really appreciate it. Content
There's an even easier way than using batch scripting since you can extract every image using this:

wimgt decode *.tpl

Or drag and drop a directory so you can do this...

wimgt decode <directory>/*.tpl