Difference between revisions of "Compiling:Batch Files"

From Custom Map Makers Wiki
Jump to: navigation, search
(About)
(About)
Line 3: Line 3:
 
===About===
 
===About===
  
[http://en.wikipedia.org/wiki/Batch_file Batch Files] are  
+
[http://en.wikipedia.org/wiki/Batch_file Batch Files] are files with one or more command line. Batch files are often used to add surface sounds and bot's. But they can manage the same as a frontend.
 +
 
 +
===The %1 variable===
 +
The %1 variable can be very usefull when making a batch file. Instead of a path to the file you want to work with you can simply use %1. This allowes you to work with the file that are droped on the batch file.
 +
 
 +
<div id="BatchFilesEg" style="border:2px #333333 dotted; background-color:#555555;">
 +
mspaint %1
 +
</div>
  
 
[[Category:Compiling]]
 
[[Category:Compiling]]

Revision as of 10:30, 19 August 2011

Batch Files

About

Batch Files are files with one or more command line. Batch files are often used to add surface sounds and bot's. But they can manage the same as a frontend.

The %1 variable

The %1 variable can be very usefull when making a batch file. Instead of a path to the file you want to work with you can simply use %1. This allowes you to work with the file that are droped on the batch file.

mspaint %1