Jump to content

How does one find a parcel owner?


You are about to reply to a thread that has been inactive for 2149 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

If the land is group owned, it's a fairly safe bet the group owner is the person to poke.

For rented land (if nothing obvious on the ground, and about land shows some prims used),  fly up to 4000M and fall, find a lot of stuff owned by one person .. good a chance as any.

Link to comment
Share on other sites

key kGetName;

default

{

    touch_start( integer num )

    {

        key kOwner  = llList2Key( llGetParcelDetails( llGetPos(), [PARCEL_OWNER] ),0 );

        kGetName = llRequestAgentData( kOwner, DATA_NAME);

    }

    dataserver(key id, string data)

    {

        if ( id == kGetName )

        {

            llSay(0, "This parcel is owned by " + data);

        }

    }

}

Just off the top of my head and not tested in world, but quite likely to work.  Drop it in a prim, wear it, and then click on it while you are in the parcel.

Link to comment
Share on other sites

20 minutes ago, Tamara Artis said:

Is this thread about art, music or photography? 9_9

I guess now how did you get this idea? Of course it might be useful for photography as well, as parcel owners usually like being asked if you can take photos...

Edited by Fionalein
Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 2149 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...