ON SENDING PRIM
list values = [a,b,c,d,e,f,g];
string str_values = llDumpList2String(values, "+"
; llMessageLinked(-1,0,str_values,"id"
; ON RECIEVING PRIM
link_message(integer sender, integer num, string msg, key id)
{
list values = llParseString2List(msg, ["+"],[]);
a=llList2Integer(values,0);
b=llList2Integer(values,1);
c=llList2Integer(values,2);
d=llList2Integer(values,3);
e=llList2Integer(values,4);
f=llList2Integer(values,5);
g=llList2Integer(values,6);
__________________
okay, now this works great for integers, my problem is im now wanting to send multiple user/object keys as well. I have tried to add them to list, and many errors come up no matter how i try to send it. I havent worked much with lists, im assuming you cant mix things in list, but ive tried sending list of keys and cant get that working eaither.
im shooting to add key on same list as h & i if possible, but any way to send list of keys with message linked would work
can someone point me towards right code to send keys?