Handy Tintin++ aliases
Posted: Sun Jan 15, 2012 11:52 pm
I'm finally learning more about aliases in the Tintin++ client. Here are two that are really handy:
#alias getit {open %2 ; get %1 from %2 ; close %2}
#alias stuffit {open %2 ; put %1 in %2 ; close %2}
So for "getit" you would type: getit [item] [container] and it would open the container, get the item, then close the container. Example: "getit ration backpack" would send:
Stuffit just puts the item away instead of getting it out.
#alias getit {open %2 ; get %1 from %2 ; close %2}
#alias stuffit {open %2 ; put %1 in %2 ; close %2}
So for "getit" you would type: getit [item] [container] and it would open the container, get the item, then close the container. Example: "getit ration backpack" would send:
Code: Select all
open backpack
get ration from backpack
close backpack