Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Virtual Spying?

Mojo Skytower
Registered User
Join date: 3 Jun 2008
Posts: 5
06-11-2008 19:32
Quick question folks.

You have someone in your friends list...

For whatever reason, you remove their ability to see when you are online (from the options box)...

Next time you come online -you get an IM from them asking why you have clicked that option and are hiding from them....??

How is this possible?

In this case , hiding myself from them was an accident, but how was the 'friend' able to see that I was online even though I was supposed to be "hidden when online" to them?

Any and all help greatly appreciated :)
Reyfer Kawanishi
Registered User
Join date: 2 Nov 2007
Posts: 51
06-11-2008 19:36
It happened to me once, and the answer was pretty simple: a common friend saw me, and when the other person asked her "have you seen Rey, it's been a while", she said "why don't you call him? he's on now"
_____________________
Peggy Paperdoll
A Brat
Join date: 15 Apr 2006
Posts: 4,383
06-11-2008 19:38
They can check your profile from the friends list and it will tell them if you are online. That checking the eye is only for a casual user to see you are "not" online. Though most people would respect that "hiding" option......some don't though.
MoxZ Mokeev
Invisible Alpha Texture
Join date: 10 Jan 2008
Posts: 870
06-11-2008 19:47
If you're in a common group, it will tell you if they're online.

If you im someone and they're online, you don't get the message that this avatar is offline.
_____________________
:p
Mojo Skytower
Registered User
Join date: 3 Jun 2008
Posts: 5
06-11-2008 19:53
Ah - right - thanks guys.

Was worried they had installed some kind of spy thingy. Mainly as they IM'd me within 2 mins of logging in (it wasn't like I switched them off whilst on line - thw switching off was done during a previous game crash).


So they must have checked the profile right then or they are checking it regularly - either of which in itself is a bit ....odd.

Hey ho never mind. Ta V much for the super quick replies :)
Amity Slade
Registered User
Join date: 14 Feb 2007
Posts: 2,183
06-11-2008 20:00
Another way to tell if someone is online is to do a Search of that person. If the "Offer Teleport" button is available, then the person is online.

You can also tell if someone is online by looking at your "Calling Cards" folder in your inventory. The calling cards of people online are highlighted.
LittleMe Jewell
...........
Join date: 8 Oct 2007
Posts: 11,319
06-11-2008 20:04
The are avatar detectors that you can put an avatar name into and be notified when that avatar signs in. Some of these are HUDs that you can wear and others are objects that you can rez inworld. These items can even send you email so you know when the avatar logs in and out even when you are not inworld.
_____________________
♥♥♥
-Lil

Why do you sit there looking like an envelope without any address on it?
~Mark Twain~

Optimism is denial, so face the facts and move on.
♥♥♥
Lil's Yard Sale / Inventory Cleanout: http://slurl.com/secondlife/Triggerfish/52/27/22
.
http://www.flickr.com/photos/littleme_jewell
LittleMe Jewell
...........
Join date: 8 Oct 2007
Posts: 11,319
06-11-2008 20:05
From: Amity Slade
Another way to tell if someone is online is to do a Search of that person. If the "Offer Teleport" button is available, then the person is online.

You can also tell if someone is online by looking at your "Calling Cards" folder in your inventory. The calling cards of people online are highlighted.
Actually, if they have unchecked you being able to see them online, you will not see the Offer Teleport and the Calling Card will not show them online -- at least it works this way (properly) in the version of the viewer that I use.

Also, if you have 'view admin options' turned on, you will always see the Offer Teleport whether they are really online or not.
_____________________
♥♥♥
-Lil

Why do you sit there looking like an envelope without any address on it?
~Mark Twain~

Optimism is denial, so face the facts and move on.
♥♥♥
Lil's Yard Sale / Inventory Cleanout: http://slurl.com/secondlife/Triggerfish/52/27/22
.
http://www.flickr.com/photos/littleme_jewell
Davin Romano
jerk
Join date: 21 Mar 2008
Posts: 384
06-11-2008 20:21
hmm I've always felt bad doing that.. but then again crap like this happens if you dont uncheck that box:

I log in, at my gallery hanging up some new pieces.. sum1 IM's me and I don't reply right away.. then they show up right behind me and say Hi Davin.. creepy!

also what's with the influx of alts lately.. I wonder if it's from all the alt discussions here, but I've had a number of like 2 day old avies at my place talking to me and buying art.. I've never known someone to spend 500L on a piece of virtual art on their very first day in SL.. let alone before buying some skin or clothes! poor guy didn't even realize he was still Ruthed..lol
Dante Tucker
Purple
Join date: 8 Aug 2006
Posts: 806
06-11-2008 20:36
I'm going to write an online tracker real quick you can all use, check back here in a minute...
Dante Tucker
Purple
Join date: 8 Aug 2006
Posts: 806
Online tracker
06-11-2008 20:51
Heres a simple online tracker.

Use http://w-hat.com/name2key To get your victims key.

Then put the key into this script at the top where it says to.

CODE


key _key = "KEY_GOES_HERE"; //Yeah the key goes there
key query;
default
{
state_entry()
{
llSetTimerEvent(10);

}
timer()
{
query = llRequestAgentData( _key, DATA_ONLINE);
}
dataserver(key queryid, string data)
{
if ( query == queryid ) {
if (data == "1")
{
llSetText(llKey2Name(_key) + " is Online.",<0,1,0>,1);
}
else
{
llSetText(llKey2Name(_key) + " is Offline.",<1,0,0>,1);
}
}
}
}//Dante Tucker


Put that in a box or something.
Mojo Skytower
Registered User
Join date: 3 Jun 2008
Posts: 5
06-11-2008 21:04
Nice one Dante - you turned a "how can people spy on me" thread into a tutorial that tells others exactly how do to the thing I was worried about.

Great Work. Give yourself a pat on the back why don't you.
Dante Tucker
Purple
Join date: 8 Aug 2006
Posts: 806
06-11-2008 21:10
From: Mojo Skytower
Nice one Dante - you turned a "how can people spy on me" thread into a tutorial that tells others exactly how do to the thing I was worried about.

Great Work. Give yourself a pat on the back why don't you.



The fact that you can mute people makes any concerns of spying moot. If you don't want to deal with them then.. don't!

Also it's not a very complex script, I just wrote it from nothing in 2 minutes :P

Everyone needs to know how to do things, the more people know, the less negative effect it has. Protect your self by educating yourself I say.
Peggy Paperdoll
A Brat
Join date: 15 Apr 2006
Posts: 4,383
06-11-2008 21:12
There is no privacy in SL..............why delude yourself? :)
Mojo Skytower
Registered User
Join date: 3 Jun 2008
Posts: 5
06-11-2008 21:15
From: Dante Tucker
Protect your self by educating yourself I say.



Very true Dante- sorry about the sarcy tone of the last one. Knowing how easy it is doesn't make it any more palatable. But at least it has opened my eyes somewhat. :)

And Peggy - I deluded myself because I am a total newb at SL :) :D
Joseph Abel
Leaves no pawprints...
Join date: 20 Aug 2006
Posts: 781
06-11-2008 21:15
From: Mojo Skytower
Nice one Dante - you turned a "how can people spy on me" thread into a tutorial that tells others exactly how do to the thing I was worried about.

Great Work. Give yourself a pat on the back why don't you.

...and it took all of about 30 seconds to find one on SLExchange...I'm sure there are cheaper models available as well...

http://www.slexchange.com/modules.php?name=Marketplace&file=item&ItemID=268022
_____________________
Nimbus rated!!
From: Nimbus Rau
So your final Nimbus Score is a grand total of 8.55. A magnificent achievement!
Kitty Barnett
Registered User
Join date: 10 May 2006
Posts: 5,586
06-11-2008 21:16
The feature itself has had a less than stellar track record up until now too, it's gone through periods where it just plain didn't work (you'd show online regardless), or where it sort of worked (you'd show offline if you logged on after they did, but if they relogged or logged on after you're already online, they'd see you on).

Even without all the script, checking groups or simply IM'ing loopholes, it's just best to assume that if you have someone on your friends list that they're going to be able to see when you're online and stick to using it for casual "hiding" rather than actually wanting to avoid having someone notice whether you're online or not.
Reyfer Kawanishi
Registered User
Join date: 2 Nov 2007
Posts: 51
06-11-2008 22:36
Just out of curiosity, because I'm really straightforward...if you need to "hide" from these people, wouldn't it be better to just take them out of your list? I mean, if you don't want them to know you're online, to me it means you don't want to hang with them, or talk to them, so why have them on your list?
_____________________
Rhaorth Antonelli
Registered User
Join date: 15 Apr 2006
Posts: 7,425
06-11-2008 22:41
that script is probably in the library as well (on the forums the scripting sub forum)

as for the not wanting someone to know, yeah why not just remove them?

Is it a matter of you want to know when they are on, but them not know when you are on?
_____________________
From: someone
Morpheus Linden: But then I change avs pretty often too, so often, I look nothing like my avatar. :)


They are taking away the forums... it could be worse, they could be taking away the forums AND Second Life...
Dante Tucker
Purple
Join date: 8 Aug 2006
Posts: 806
06-11-2008 22:55
From: Rhaorth Antonelli
that script is probably in the library as well (on the forums the scripting sub forum)

as for the not wanting someone to know, yeah why not just remove them?

Is it a matter of you want to know when they are on, but them not know when you are on?


I checked, there is none like it. Maybe I should submit it?

Edit: I meant the script library in the wiki.
Rebecca Proudhon
(TM)
Join date: 3 May 2006
Posts: 1,686
06-11-2008 22:56
It is very dumb that it is the way it is. One should be able to check the box and then it also disallows them from seeing "online" in the profile.
Rhaorth Antonelli
Registered User
Join date: 15 Apr 2006
Posts: 7,425
06-11-2008 22:58
From: Dante Tucker
I checked, there is none like it. Maybe I should submit it?

Edit: I meant the script library in the wiki.


sure why not

I was refering to the library on the forums hehe
_____________________
From: someone
Morpheus Linden: But then I change avs pretty often too, so often, I look nothing like my avatar. :)


They are taking away the forums... it could be worse, they could be taking away the forums AND Second Life...
Dante Tucker
Purple
Join date: 8 Aug 2006
Posts: 806
06-11-2008 22:59
From: Rebecca Proudhon
It is very dumb that it is the way it is. One should be able to check the box and then it also disallows them from seeing "online" in the profile.


There is a second box in your preferences, show online status to friends only, that combined with disabling that friends abilitys will disalow them from seeing in your profile.
Teetah Beck
Bad Barbie
Join date: 18 Apr 2007
Posts: 117
06-11-2008 23:46
and this website, under online friends, will tell if your online even if you have not online checked in world.
_____________________
Get your Western and Australian gestures at B&B gestures.




http://www.flickr.com/photos/teetah/
Skell Dagger
Smitten
Join date: 26 Jun 2007
Posts: 1,885
06-12-2008 06:09
There is an online notifier HUD for sale inworld (from a popular store) that you can add any number of names to, and it will tell you when someone from your names list logs on and off, even if neither of you is on the other person's actual friends list. I suspect your friend might have been using this, as it's fairly well-known.
1 2 3