Author Topic: Need some help:  (Read 2569 times)

They allow you to reference variables from within the message string.

%1 = 1st variable referenced in the message string.
%2 = 2nd variable referenced in the message string.
%3 = 3rd variable referenced in the message string.

Get the picture?

Code: [Select]
messageClient(%client,'','\c0This is a referenced variable: %1',%variable);
Interesting. I'll remember that. Thanks.