Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Who's on my land?

Tegg Bode
FrootLoop Roo Overlord
Join date: 12 Jan 2007
Posts: 5,707
02-14-2008 00:28
If you have an unlocked sexbed you can get good traffic, people will drop in all the time to use it, some one said they could use a detector to search for certain objects all over SL.
_____________________
Level 38 Builder [Roo Clan]

Free Waterside & Roadside Vehicle Rez Platform, Desire (88, 17, 107)

Avatars & Roadside Seaview shops and vendorspace for rent, $2.00/prim/week, Desire (175,48,107)
Dartagnan Nakajima
Registered User
Join date: 2 Feb 2008
Posts: 192
02-14-2008 12:46
Can somebody help me with restricting visitors that I don't want to my home/plot. I was hanging out and somebody just dropped in out of the blue. How can I set up my "about land" box/protocols to prevent this?

Thanks
Steel Masala
Registered User
Join date: 15 Sep 2007
Posts: 377
Who's there
02-16-2008 19:12
Install visitor list scripts in items all over,its free script and will list there names and you can reset it
Dekka Raymaker
thinking very hard
Join date: 4 Feb 2007
Posts: 3,898
02-16-2008 19:58
14 traffic is so low its probably the count of the OP being on their own land, a bit like my boss used to keep logging on to his website to see the visitor counter keep going up I had to eventually tell him, he was the only visitor, the counter was only recording him
Kronos Avro
Under Construction!
Join date: 15 Dec 2007
Posts: 25
02-16-2008 22:05
Here is a simple script you call up with commands, and you can also change the settings for the range you wish to have it set at.

Just change lines 3 and 4, this is for the distance and cycles you want the script running respectfully.

If you need assistance with this script, just say 'Help' with out the quotes and a small list of instructions will appear in the chat window.

I hope this helps you some.



CODE

// Global variables
list visitor_list;
float range = 60.0; // in meters
float rate = 5.0; // in seconds


// Functions
integer isNameOnList( string name )
{
integer len = llGetListLength( visitor_list );
integer i;
for( i = 0; i < len; i++ )
{
if( llList2String(visitor_list, i) == name )
{
return TRUE;
}
}
return FALSE;
}

// States
default
{
state_entry()
{
llSay(0, "Visitor List Maker started...");
llSay(0, "The owner can say 'help' for instructions.");
llSensorRepeat( "", "", AGENT, range, TWO_PI, rate );
llListen(0, "", llGetOwner(), "");
}


sensor( integer number_detected )
{
integer i;
for( i = 0; i < number_detected; i++ )
{
if( llDetectedKey( i ) != llGetOwner() )
{
string detected_name = llDetectedName( i );
if( isNameOnList( detected_name ) == FALSE )
{
visitor_list += detected_name;
}
}
}
}

listen( integer channel, string name, key id, string message )
{
if( id != llGetOwner() )
{
return;
}

if( message == "help" )
{
llSay( 0, "This object records the names of everyone who" );
llSay( 0, "comes within "+ (string)range + " meters." );
llSay( 0, "Commands the owner can say:" );
llSay( 0, "'help' - Shows these instructions." );
llSay( 0, "'say list' - Says the names of all visitors on the list.");
llSay( 0, "'reset list' - Removes all the names from the list." );
}
else
if( message == "say list" )
{
llSay( 0, "Visitor List:" );
integer len = llGetListLength( visitor_list );
integer i;
for( i = 0; i < len; i++ )
{
llSay( 0, llList2String(visitor_list, i) );
}
llSay( 0, "Total = " + (string)len );
}
else
if( message == "reset list" )
{
visitor_list = llDeleteSubList(visitor_list, 0, llGetListLength(visitor_list));
llSay( 0, "Done resetting.");
}
}
}

[END CODE]
Claari Shepherd
Danri CEO and Designer
Join date: 20 Feb 2007
Posts: 170
02-16-2008 22:27
From: Dartagnan Nakajima
Can somebody help me with restricting visitors that I don't want to my home/plot. I was hanging out and somebody just dropped in out of the blue. How can I set up my "about land" box/protocols to prevent this?

Thanks



Dartagnan... that is the Access tab of the ABout Land dialog. Just click to activate it, then add a list of the people that should have access. This is what places the red Ban lines around a parcel to people without access. Check your Covenant though.. some estates do not allow use of the ban lines... If you live on Mainland though, you are golden.

By the way... it doesn't restrict people from flying over your house at 75m (last I checked).. so it's not very useful for Skyboxes.

You can also buy a security system... Psyke's is very popular... search for it in world.
1 2