Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

How to tell whose been in my apartment?

Allysa Messmer
Registered User
Join date: 17 May 2007
Posts: 101
07-30-2008 13:09
Hi,
I had a question that I was hoping someone could help with. I maintain a cute little apartment/room at the club I work. Its really cute, and I've added a bed, some chairs, a cute pic board and some various other things. I've told my friends and others that I dont mind people using it at all.
However, I am looking for a way to be able to tell when someone visits or uses something here. Its really out of curiosity, but also I'd like to get feedback from them from time to time as I add new poses, furniture, or pics on the wall, etc.
So a guy gave me a script the other day that is supposed to send me an IM when someone sits, but I cannot figure it out, lol. I have no idea if I'm supposed to edit the script for my name, and how to do that.
Does anyone know of any other SL gadgets or scripts that would tell me when someone either entered my room, or used my bed/chair, etc. ?

Thanks so much!!
Allysa
=^.^=
3Ring Binder
always smile
Join date: 8 Mar 2007
Posts: 15,028
07-30-2008 13:12
you can put a visitor counter in a prim on your landing point, and when you ask it to, it will bring up all the names of avatars who have visited since the last reset.

i can send you a copy next time i am inworld, which isn't very often, or you can probably find one in the scripting forum via search, or maybe at one of the freebie warehouses if you can't wait.

i don't know if the version i have sends an email, however.
Amaranthim Talon
Voyager, Seeker, Curious
Join date: 14 Nov 2006
Posts: 12,032
07-30-2008 13:14
sounds interesting 3- what's it called?
_____________________
"Yield to temptation. It may not pass your way again. "
Robert A. Heinlein




http://talonfaire.blogspot.com/

Visit Talon Faire Main:
http://slurl.com/secondlife/Misto%20Presto/216/21/155- Main Store

XStreets: http://tinyurl.com/6r7ayn
Soji Slade
Um . . . Hello?
Join date: 28 Mar 2007
Posts: 1,270
07-30-2008 13:16
For example:
Pro (400L) http://shop.onrez.com/item/362028 (gah, involves website and 250L monthly fee. I'm sure there is a free one that logs visitors names - the free one below just logs number)
Free (0L) http://shop.onrez.com/item/359020

here is one that is 100L than the free one above and gives you visitors log without needing website or monthly fee. http://shop.onrez.com/item/326929
_____________________
From: Nimbus Rau
Nimbus Score is 9.5 out of a possible 10 - Wow! what a score. What a cat!

300th Post 2/22/08
400th Post 2/28/08
500th Post 3/14/08
600th Post 3/28/08
666th Post 8/05/08
SL music wiki
http://exploringvirtualworlds.wikidot.com/music-acts
Avion Raymaker
Palacio del Emperador!
Join date: 18 Jun 2007
Posts: 980
07-30-2008 13:17
Allysa,

I'd use a bot. I use one that's around 100 L from a place called "Simbad's Bots." The one called "Traffic Bot" is very easy to use. You tell it how far to monitor, and you can set it to notify you on each visit, or just send you a report at the end of the day of who has visited.

I use them to determine whether customers are utilizing and/or making sense out of my advertising and landmark displays. They give me a clear picture of when someone has landed here, but then teleported there, etc. But it's fun for curiosity's sake, too.
Cristalle Karami
Lady of the House
Join date: 4 Dec 2006
Posts: 6,222
07-30-2008 13:22
There is one called HLog that will show you the time of entry and exit, and it can log chat. Mind you, logging chat is an iffy thing under TOS, so be careful how you use that feature.
_____________________
Affordable & beautiful apartments & homes starting at 150L/wk! Waterfront homes, 575L/wk & 300 prims!

House of Cristalle low prim prefabs: secondlife://Cristalle/111/60

http://cristalleproperties.info
http://careeningcristalle.blogspot.com - Careening, A SL Sailing Blog
JulieAnne Rau
Curious Girl
Join date: 21 Jun 2007
Posts: 201
07-30-2008 13:25
yes, I used "traffic Bot' also



$110L

JulieAnne
3Ring Binder
always smile
Join date: 8 Mar 2007
Posts: 15,028
07-30-2008 13:28
FREE!

create a prim of any size (i use a welcome mat)
go to contents
click "new script"
delete default script info add this in to the script. (not the dotted lines, just cut/paste what is between the lines)

-----------------------------------------------------------------

// Global variables
list visitor_list;
float range = 5.0; // in meters
float rate = 1.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.";);
}
}
}


------------------------------------------------------------------

in chat say: reset list

now, next time you log in, to see just a list of names of who has visited say: say list

then reset the list again if you want.

make the prim tiny or invisible or a welcome mat, or whatever you want.

good luck
Amaranthim Talon
Voyager, Seeker, Curious
Join date: 14 Nov 2006
Posts: 12,032
07-30-2008 13:31
coolest! Thanks 3!
_____________________
"Yield to temptation. It may not pass your way again. "
Robert A. Heinlein




http://talonfaire.blogspot.com/

Visit Talon Faire Main:
http://slurl.com/secondlife/Misto%20Presto/216/21/155- Main Store

XStreets: http://tinyurl.com/6r7ayn
Czari Zenovka
I've Had it With "PC"!
Join date: 3 May 2007
Posts: 3,688
07-30-2008 13:32
I use a very easy, free visitor's script in my store as well. If you are still needing one after all the great answers above, shoot me an IM and I'll drop one on you. :)
_____________________
*Czari's Attic* ~ Relive the fun of exploring an attic for hidden treasures!

http://slurl.com/secondlife/Rakhiot/82/99/111

During times of universal deceit, telling the truth becomes a revolutionary act.- George Orwell
Imnotgoing Sideways
Can't outlaw cute! =^-^=
Join date: 17 Nov 2007
Posts: 4,694
07-30-2008 13:36
From: Cristalle Karami
There is one called HLog that will show you the time of entry and exit, and it can log chat. Mind you, logging chat is an iffy thing under TOS, so be careful how you use that feature.
Logging chat is not a violation on its own. Disclosing the log is when the trouble starts. (^_^)y
_____________________
Somewhere in this world; there is someone having some good clean fun doing the one thing you hate the most. (^_^)y


http://slurl.com/secondlife/Ferguson/54/237/94
Dakota Tebaldi
Voodoo Child
Join date: 6 Feb 2008
Posts: 1,873
07-30-2008 13:56
How about a script that automatically ejects Immy when she shows up at my apartment? That would so rock.
_____________________
"...Dakota will grow up to be very scary... but in a HOT and desireable kind of way." - 3Ring Binder

"I really do think it's a pity he didnt "age" himself to 18." - Jig Chippewa

:cool:
Allysa Messmer
Registered User
Join date: 17 May 2007
Posts: 101
07-30-2008 14:48
Oh, Awesome guys, thnx so much for the helpful replies!!!

Allysa
=^.^=