note that the listen script listens to message that would be something like /33 body <1,1,1>
The script with the listen script in it is
customfilter = llParseString2List(message,[","],[]);
if(llList2String(customfilter, 0) == "body"
{llMessageLinked(-1,0,llList2String(customfilter, 1),"customcolorbody"
;return;}The script that recives it is this
default
{
link_message(integer sender_num, integer num, string str, key id)
{
if(id == "customcolorbody"

{
vector bodycolor = (vector)llList2String([str], 0);
llSetColor(bodycolor, ALL_SIDES);
}
however llList2String(customfilter, 1) only returns a 0 and thats all, no string or anything.....