Re-reading over my question. It seems I didn't specify as much as I thought when I originally posted.

I was wondering if it was possible when reading from a commands inifile that uses the n switch to have identifiers like $2 or $nick actively work without making it compromise the code?

I'm guessing that when it reads I could make it parse the code as a variable and if $2 or $nick or things like that appear do a $replace(%rCommand, $chr(50), $2).

As an example
Code:
if (($chr(50) isin %rCommand)) {
var %xCommand = $replace(%rCommand, $chr(50), $2)
msg # %xCommand
}


Would this example be the closest thing to do it as?