Results 1 to 5 of 5

Thread: [TUT] (Novice) Creating More Efficient Shortcuts

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Hmmm... MetKiller Joe's Avatar
    Join Date
    Sep 2006
    Location
    Somewhere in space-time
    Posts
    1,196

    [TUT] (Novice) Creating More Efficient Shortcuts





    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:



    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.
    Last edited by MetKiller Joe; May 19th, 2008 at 09:20 PM.
    Reply With Quote

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •