-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50f4300
commit 692853a
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()); | ||
} | ||
} |