Added two placeholders in template system.
- %argument_all% Will display all the current arguments in the command.
- %argument_other% Will display all the arguments that havn't been used with %argument_X%.
Example:
template: First argument: %argument_1% and the others %argument_other% (Here is all the arguments %argument_all%)
arguments in command: Argument1 Argument2 Argument3
output: First argument: Argument1 and the others Argument2 Argument3 (Here is all the arguments Argument1 Argument2 Argument3)