I've got a little problem with the collision_start event of a linked set of prims. Basically, I want to detect with which prim a collision occured, but when I put a script like the following example in each prim, the event is fired for all prims.
default
{
on_rez(integer param)
{
llPassCollisions(FALSE);
}
collision_start(integer num)
{
llOwnerSay(llKey2Name(llDetectedOwner(0)) + ": 1 point"

}
}
So if I have let's say 5 prims in the link set, I get 5 times the message. Any idea how I can get it working in a way I only get the message once from the prim that was actually hit?
Thanks for your help!
Ansa