LSDAnonymous wrote:
JeanValjean wrote:
Actually, if you want to be more specific with your input, I would use some of the custom variables (e.g. %w for a word * for anything) and encase them in () for the valuable to be captured, and then when you have to output, you simply use %1, %2 and they get spat out in the same order they got captured.
I think I am confused again    

What he's saying, is that instead of using 
Quote:
Trigger - %1 bashes %2 and sends him sprawling! 
 you could use 
Quote:
 %w bashes %w and sends him sprawling!
 OR you could have used 
Quote:
%* bashes %* and sends him sprawling!
There are actually TONS of things you could use so long as your output is the same  
Quote:
#echo %1 BASHES %2
I just like using the ones that are easier to understand at first glance:)