[TUT] (Novice) Creating More Efficient Shortcuts
http://img261.imageshack.us/img261/3...tcuttutll4.jpg
Say one has a map they've been working on fervently. This person probably does not want to keep typing:
Code:
<Halo CE root directory>\tool structure levels\foo foo
or
<Halo CE root directory>\tool lightmaps levels\foo\foo foo 0 0.9
[debug]
or even
<Halo CE root directory>\tool build-cache-file levels\foo\foo
Presumably, this person is a novice, and novices get a lot of tool/sapien errors. Having a simple one-time, work-around, method is nice to keep doing what is really important and less of what is just plane mundane.
I will show you how to make one shortcut that will decrease all steps to one step: double-click on the shortcut.
Open up your tool shortcut; we will make a shortcut that will execute tool along with the following commands:
Code:
structure levels\foo foo
The syntax for this is:
Code:
<Halo CE root directory>\cmd.exe" /k "tool structure levels\foo foo"
As demonstrated here:
http://img166.imageshack.us/img166/5233/tutqy9.jpg
The same syntax can be applied to any tool command; the syntax for multi-purpose use is:
Code:
"<Halo CE root directory>\cmd.exe" /k "tool <command> <syntax of given command as defined in tool>"
And yes, the quotation marks are something you need as well.
Credits go to my friend who showed me this method.
Re: [TUT] (Novice) Creating More Efficient Shortcuts
Very useful for people who are lazy.
Re: [TUT] (Novice) Creating More Efficient Shortcuts
Actually I never knew that, but then I only really type it in once anyway and then just press up to cycle through old commands.
Re: [TUT] (Novice) Creating More Efficient Shortcuts
You could do the same thing with batch files, but I suppose this is nifty nonetheless.
Re: [TUT] (Novice) Creating More Efficient Shortcuts
This looks more elegant than batch files....