removed useless _ folders
This commit is contained in:
6
LandOwner_Key/LandOwner_Key/LandOwner_Key.prj
Normal file
6
LandOwner_Key/LandOwner_Key/LandOwner_Key.prj
Normal file
@@ -0,0 +1,6 @@
|
||||
<Project name="LandOwner_Key" guid="D750D7BB-6C00-1014-B904-200204C60A89">
|
||||
<Object name="Object" guid="D750D8DC-6C00-1014-B904-200204C60A89">
|
||||
<Script name="LandOwner_Key_1.lsl" guid="D750F289-6C00-1014-B904-200204C60A89">
|
||||
</Script>
|
||||
</Object>
|
||||
</Project>
|
||||
33
LandOwner_Key/LandOwner_Key/Object/LandOwner_Key_1.lsl
Normal file
33
LandOwner_Key/LandOwner_Key/Object/LandOwner_Key_1.lsl
Normal file
@@ -0,0 +1,33 @@
|
||||
// :CATEGORY:Land
|
||||
// :NAME:LandOwner_Key
|
||||
// :AUTHOR:Anonymous
|
||||
// :CREATED:2010-01-10 05:20:56.000
|
||||
// :EDITED:2013-09-18 15:38:56
|
||||
// :ID:458
|
||||
// :NUM:614
|
||||
// :REV:1.0
|
||||
// :WORLD:Second Life
|
||||
// :DESCRIPTION:
|
||||
// LandOwner Key.lsl
|
||||
// :CODE:
|
||||
|
||||
|
||||
1// remove this number for the script to work.
|
||||
|
||||
|
||||
|
||||
// This script will give you the AV key of the land owner. Place this script in an object then click it to get the key.
|
||||
|
||||
|
||||
//This script will only return the name if the owner is ONLINE at the time althoug it will give you the key of the owner.
|
||||
|
||||
default
|
||||
{
|
||||
|
||||
touch_start(integer total_number)
|
||||
{
|
||||
llSay(0, "The land owner's key is: " + (string)llGetLandOwnerAt(llGetPos()));
|
||||
llSay(0, "THe land owner's name is: " + llKey2Name(llGetLandOwnerAt(llGetPos())));
|
||||
}
|
||||
}
|
||||
// END //
|
||||
Reference in New Issue
Block a user