function messageAll(%cmd, %msg, %a, %b, %c, %d, %e, %f, %g, %h, %i, %j, %k, %l, %m, %n, %o, %p, %q, %r)
{
%count = clientGroup.getCount();
for(%index = 0; %index < %count; %index ++)
messageClient(clientGroup.getObject(%index), %cmd, "<font:calibri:30>" @ %msg, %a, %b, %c, %d, %e, %f, %g, %h, %i, %j, %k, %l, %m, %n, %o, %p, %q, %r);
}
I have tried single quotes as well
...messageall is used for alot of other stuff so don't do it like that
Doesn't look like torque likes modification of tagged strings. I wouldn't advise it either. MessageAll is one of those functions you shouldn't be messing with.
msg isn't a tagged string
However, to modify a tagged string:
%str = addtaggedstring("blah" @ detag(%tag));