removed useless _ folders
This commit is contained in:
3
OwnerChannel/OwnerChannel.sol
Normal file
3
OwnerChannel/OwnerChannel.sol
Normal file
@@ -0,0 +1,3 @@
|
||||
<Solution name="OwnerChannel">
|
||||
<Project name="OwnerChannel" path="OwnerChannel\OwnerChannel.prj" active="true"/>
|
||||
</Solution>
|
||||
@@ -0,0 +1,28 @@
|
||||
// :CATEGORY:Utilities
|
||||
// :NAME:OwnerChannel
|
||||
// :AUTHOR:Anonymous
|
||||
// :CREATED:2013-09-06
|
||||
// :EDITED:2013-09-18 15:38:59
|
||||
// :ID:600
|
||||
// :NUM:822
|
||||
// :REV:1
|
||||
// :WORLD:Second Life
|
||||
// :DESCRIPTION:
|
||||
// makes a unique channel for listeners specific to the owner
|
||||
// :CODE:
|
||||
|
||||
|
||||
default
|
||||
{
|
||||
state_entry()
|
||||
{
|
||||
integer channel = (integer)("0x"+llGetSubString((string)llGetOwner(),-16,-1)) ;
|
||||
llSay(0, "channel: "+(string)channel);
|
||||
llListen(channel,"","","");
|
||||
}
|
||||
|
||||
listen(integer channel, string name, key id, string message)
|
||||
{
|
||||
llSay(0,"Heard " + message);
|
||||
}
|
||||
}
|
||||
6
OwnerChannel/OwnerChannel/OwnerChannel.prj
Normal file
6
OwnerChannel/OwnerChannel/OwnerChannel.prj
Normal file
@@ -0,0 +1,6 @@
|
||||
<Project name="OwnerChannel" guid="42bb0c2d-7dbb-4b75-9fbc-76b7314ac9be">
|
||||
<Object name="Object" guid="7c1a6863-8121-4ec9-9b37-75b177ae8c52" active="true">
|
||||
<Script name="Owner Channel for listens.lsl" guid="7ac14d2c-d47c-483a-8d2d-1a31950d54ce">
|
||||
</Script>
|
||||
</Object>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user