but I can't figure out what the syntacs for that would be.
I went to wiki copied the examples of linked message
put this script in one
CODE
default
{
touch_start(integer total_number)
{
// sends the message 0, "Touched.", NULL_KEY to the same object that contains this script.
// (llGetLinkNumber() gets the linknum.)
llMessageLinked(llGetLinkNumber(), 0, "Touched.", "");
}
}
and this in the other
CODE
default
{
link_message(integer sender_num, integer num, string str, key id)
{
llSay(0,str);
}
}
and hoped I'd get a response from something, Then tried making the other one the main prim no difference.
Well what good is an example if when you try it you get no response?
Someone please point out what I'm doing wrong here both scripts compiled succsfully, are running and I even tried adding this line to one to see if It made it.
llSay(0,"made it to here"

CODE
default
{
link_message(integer sender_num, integer num, string str, key id)
{
llSay(0,str);
llSay(0,"made it to here");
}
}
and never got a peep
and if you know how to do what i'm trying to do could you show me an example. or get a hold of me and sell it to me?