add to aliases section(alt+a) of mIRC editor:
test {
echo what's that? - $1
echo that's like $2 ?
echo $3 there any1 out there?
echo indeed, $1-
echo but $2-4 out there
}
type command "/test something weird is happening"
$1 is the first token of supplied arguments to command
$2 is the same as $1, but suprisingly it returns 2nd word of supplied arguments
$3 -''- $2, -''- 3rd -''-
$1- is the whole arguments supplied to command