Say I have
for(%x = 0; %x < 16; %x++)
%msg += %msg[%x];
I'm trying to make it so that %msg will equal to %msg0 %msg1 %msg2 ...etc (using the for loop)
Obviously it does not work. Yes, I'm fully aware that you cannot add strings together :/
The code I've displayed is merely a representation of what I was attempting to do.