I'm having a hell of a time trying to get a chair to work with a couples pose. I found a free script and animation poseball set which I ripped apart and worked into a chair.
The male uses the back cushion to sit on, the female uses the bottom cushion, and it works great, they cuddle

But when I make a copy of the chair, both poses are rotated about 180 degrees, heads touching the seats.
This is the script from the female seat, the male seat is the same but with different ROTATION values.
vector POSITION=<0.5,0,-0.4>;
vector ROTATION=<90,0,-30>;
string HOVERTEXT="Female Seat";
string SIT_TEXT="Sit down";
string HOVER_RGB="255,255,255";
set_text()
{
if (llStringLength(HOVERTEXT)>0)
{
rgb=llCSV2List(HOVER_RGB);
llSetText(HOVERTEXT,<llList2Float(rgb,0)*0.003921568627450980392156862745098,llList2Float(rgb,1)*0.003921568627450980392156862745098,llList2Float(rgb,2)*0.003921568627450980392156862745098>,1.0);
}
else
llSetText("",<0,0,0>,0.0);
}
list rgb;
string animation;
default
{
state_entry()
{
if (llStringLength(SIT_TEXT)>0)
llSetSitText(SIT_TEXT);
rotation rotate = llEuler2Rot(DEG_TO_RAD * ROTATION) * llGetRot();
llSitTarget(POSITION,rotate);
set_text();
}
changed(integer change)
{
if (change & CHANGED_LINK)
{
if (llAvatarOnSitTarget() != NULL_KEY)
{
llRequestPermissions(llAvatarOnSitTarget(), PERMISSION_TRIGGER_ANIMATION);
}
else
{
integer perm=llGetPermissions();
if ((perm & PERMISSION_TRIGGER_ANIMATION) && llStringLength(animation)>0)
llStopAnimation(animation);
llSetAlpha(1.0, ALL_SIDES);
set_text();
animation="";
}
}
}
run_time_permissions(integer perm)
{
if (perm & PERMISSION_TRIGGER_ANIMATION)
{
llStopAnimation("sit"
;animation=llGetInventoryName(INVENTORY_ANIMATION,0);
llStartAnimation(animation);
llSetText("",<0,0,0>,0.0);
}
}
}
The script that came with the original poseballs is called Nyterave, which also caused the problem. I ended up with the above script, a combination of Nyterave and bits and pieces from the message board. It's cleaner and easy to edit, but still doesn't solve the copy problem

I'd really appreciate help in fixing this, or maybe even a whole new script that does let me make a chair for couples with using pose balls.
Thanks in advance.....and feel free to contact me for more info or if you need to see the chair in SL itself.
