Is it possible to set $nick as a Nick Identifier within a set %variable?
I know you can use /set -n to treat value as plain text.
When I use this statement in a alias it returns my nick and not the Identifier $nick
alias test {
set -n %line Hello $nick $+ , Your message has been recieved....
}
This is what i get
%line Hello , Your message has been recieved....
This is what I am trying to achieve when I set the command
%line Hello $nick $+ , Your message has been recieved....
The only way it seems to work is if I use this command
/set -n %line Hello $nick $+ , Your message has been recieved....
If I try to use it in a alias it does not work. any Ideas on how to achieve the correct responce to using this in a aliases?