say if i have something like this
raw -q mode $chan +q $nick $+ $crlf $+ mode $chan -q $nick $+ $crlf $+ mode $chan +v $nick
is it a better code practise to set the $nick and $chan as vars??
var %chan = $chan
var %nick = $nick
raw -q mode %chan +q %nick $+ $crlf $+ mode %chan -q %nick $+ $crlf $+ mode %chan +v %nick
im wondering how mirc is accessing the identifiers like $nick and $chan and if its faster to access by vars (even though the speed isnt human recognisable, im just interested if its better to access by variables instead of calling identifiers repeatedly)