Skip to content

Commit

Permalink
Create oc_leash_on_collision
Browse files Browse the repository at this point in the history
  • Loading branch information
Medea-Destiny authored Nov 28, 2023
1 parent 50f4300 commit 692853a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/spares/oc_leash_on_collision
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
Update to Lulu Pink's grabby script for OC8.3+ interface channel


*/
integer getChannel(key kAv)
{
integer chan= -llAbs((integer)("0x" + llGetSubString(kAv,30,-1)));
if(chan==0) chan= -9876; //I mean it COULD happen.
return chan;
}

default
{
collision_start(integer num)
{
integer iChannel = getChannel(llDetectedKey(0));
llSay(iChannel, (string)llDetectedKey(0) + ":anchor " + (string)llGetKey());
}
}

0 comments on commit 692853a

Please sign in to comment.