parent
467cbf8b6b
commit
e4064605a1
1 changed files with 12 additions and 8 deletions
|
@ -67,7 +67,7 @@ key notecard_key;
|
|||
key notecard_query;
|
||||
integer reading_notecard_section;
|
||||
integer notecard_lines;
|
||||
key reused_key;
|
||||
string reused_key;
|
||||
integer reused_variable;
|
||||
integer my_sittarget;
|
||||
integer original_my_sittarget;
|
||||
|
@ -177,7 +177,8 @@ wipe_sit_targets()
|
|||
integer i;
|
||||
for (; i <= llGetNumberOfPrims(); i++)
|
||||
{
|
||||
if ((string)llGetLinkPrimitiveParams(i, [PRIM_DESC]) != "-1")
|
||||
string desc = (string)llGetLinkPrimitiveParams(i, [PRIM_DESC]);
|
||||
if (desc != "-1" && llGetSubString(desc, -3, -1) != "#-1")
|
||||
{
|
||||
llLinkSitTarget(i, ZERO_VECTOR, ZERO_ROTATION);
|
||||
}
|
||||
|
@ -315,7 +316,8 @@ set_sittarget()
|
|||
{
|
||||
target = 0;
|
||||
}
|
||||
if ((string)llGetLinkPrimitiveParams(target, [PRIM_DESC]) != "-1")
|
||||
reused_key = (string)llGetLinkPrimitiveParams(target, [PRIM_DESC]);
|
||||
if (reused_key != "-1" && llGetSubString(reused_key, -3, -1) != "#-1")
|
||||
{
|
||||
llLinkSitTarget(target, target_pos - <0.,0.,0.4> + llRot2Up(target_rot) * 0.05, target_rot);
|
||||
}
|
||||
|
@ -477,7 +479,8 @@ default
|
|||
// wipe_sit_targets() inlined here:
|
||||
for (i = 0; i <= llGetNumberOfPrims(); i++)
|
||||
{
|
||||
if ((string)llGetLinkPrimitiveParams(i, [PRIM_DESC]) != "-1")
|
||||
reused_key = (string)llGetLinkPrimitiveParams(i, [PRIM_DESC]);
|
||||
if (reused_key != "-1" && llGetSubString(reused_key, -3, -1) != "#-1")
|
||||
{
|
||||
llLinkSitTarget(i, ZERO_VECTOR, ZERO_ROTATION);
|
||||
}
|
||||
|
@ -681,12 +684,12 @@ default
|
|||
if (one == SCRIPT_CHANNEL || two == SCRIPT_CHANNEL)
|
||||
{
|
||||
end_sitter();
|
||||
reused_key = llList2Key(SITTERS, one);
|
||||
reused_key = llList2String(SITTERS, one);
|
||||
if (one == SCRIPT_CHANNEL)
|
||||
{
|
||||
reused_key = llList2Key(SITTERS, two);
|
||||
reused_key = llList2String(SITTERS, two);
|
||||
}
|
||||
if (reused_key) // OSS::if (osIsUUID(reused_key) && reused_key != NULL_KEY)
|
||||
if ((key)reused_key) // OSS::if (osIsUUID(reused_key) && reused_key != NULL_KEY)
|
||||
{
|
||||
SWAPPED = TRUE;
|
||||
llRequestPermissions(reused_key, PERMISSION_TRIGGER_ANIMATION);
|
||||
|
@ -1046,7 +1049,8 @@ default
|
|||
// wipe_sit_targets() inlined here:
|
||||
for (i = 0; i <= llGetNumberOfPrims(); i++)
|
||||
{
|
||||
if ((string)llGetLinkPrimitiveParams(i, [PRIM_DESC]) != "-1")
|
||||
reused_key = (string)llGetLinkPrimitiveParams(i, [PRIM_DESC]);
|
||||
if (reused_key != "-1" && llGetSubString(reused_key, -3, -1) != "#-1")
|
||||
{
|
||||
llLinkSitTarget(i, ZERO_VECTOR, ZERO_ROTATION);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue