ok for once I have no starter code for this cause I Epic Failed with this one. I tried to make this script but it wouldn't even compile and after hours of working on it I got mad and blew it up lol. so what I want to do is, Put a list of friends in a note card in this prim, the prim will sensor once someone gets close, if the person is on the note card the prim will then turn Phantom and invisible, once they pass through it will turn visible and solid. if anyone can help that would be great. I will start over myself and if I get anything working or slightly working Ill post it here.
thanks
lol well I got this, now to add list, and sensor instead of collision.......
default
{
collision_start(integer num_detected)
{
if (llDetectedType(0) & AGENT)
{
llSetPrimitiveParams([PRIM_PHANTOM, TRUE]);
}
}
collision_end(integer num_detected)
{
if (llDetectedType(0) & AGENT)
{
llSetPrimitiveParams([PRIM_PHANTOM, FALSE]);
llResetScript();
}
}
}