The VG Resource
Batch TPL Converter - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: Archive (https://www.vg-resource.com/forum-65.html)
+--- Forum: Old (https://www.vg-resource.com/forum-148.html)
+---- Forum: Requests (https://www.vg-resource.com/forum-131.html)
+---- Thread: Batch TPL Converter (/thread-27811.html)



Batch TPL Converter - supersmashball - 09-18-2015

Anybody know of a good one?
I'm getting back to Kirby's Dream Collection again
and would really appreciate it.


RE: Batch TPL Converter - Struggleton! - 09-18-2015

Wiimms SZS Toolset is a good one. You can create a batch file inorder to rip multiple TPL files to PNG files.


RE: Batch TPL Converter - supersmashball - 09-18-2015

(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?


RE: Batch TPL Converter - Struggleton! - 09-18-2015

Code:
wimgt copy *.tpl *.png
I think that'll work


RE: Batch TPL Converter - supersmashball - 09-18-2015

(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


RE: Batch TPL Converter - TGE - 09-23-2015

Code:
set WIMGT = wimgt.exe
for %%f in (*.tpl) do WIMGT cp %%f %%f.png
pause



RE: Batch TPL Converter - supersmashball - 09-23-2015

(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?


RE: Batch TPL Converter - TGE - 09-24-2015

I modified the code in the prev. post. The program acts a bit oddly though.


RE: Batch TPL Converter - supersmashball - 09-24-2015

(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


RE: Batch TPL Converter - larsenv - 09-26-2015

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