• All submissions to this site are governed by Second Life Project Contribution Agreement. By submitting patches and other information using this site, you acknowledge that you have read, understood, and agreed to those terms.
Issue Details (XML | Word | Printable)

Key: SVC-3004
Type: New Feature New Feature
Status: Open Open
Priority: Normal Normal
Assignee: Unassigned
Reporter: Gltchez Skytower
Votes: 7
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
2. Second Life Service - SVC

New LSL Function: llReturnObject();

Created: 04/Sep/08 06:58 PM   Updated: 07/Nov/09 07:36 PM
Return to search
Component/s: Scripts
Affects Version/s: 1.24 Server
Fix Version/s: None

Issue Links:
Duplicate
 


 Description  « Hide
I have been waiting for an LSL function that allows you to be able to return objects via a script. This function can only be used to mass return objects by owner.

integer llReturnObject(key owner, string object_name);
returns object called object_name to owner.

The requirements are:

  • You must be on land you own or in the group that owns the land and have 'return' permissions.
  • The owner key must have objects on your parcel.
  • If land is group deeded, this object must be also group deeded.
    The 'objects have been returned to your lost and found folder' would have 'parcel scripted return' instead of parcel owner return

Here are some examples of use:

To return all objects on your parcel:
llReturnObject("","");
to return all objects owned by bad_key:
llReturnObject(bad_key,"");
to return all objects named bullet:
llReturnObject("","bullet");
To return all objects owned by griefer_key and are named "beepers":
llReturnObject(griefer_key,"beepers");

This function will NOT affect owners objects or if, deeded to a group, the groups objects.

Examples Of Use:

A Sandbox Owner could lay out an object that returns everything by a blacklisted resident
Return Common Griefing Systems owned by residents.
Prevent the use of guns by returning everything named 'bullet'



 All   Comments   Change History      Sort Order: Ascending order - Click to sort in descending order
Shibari Twine added a comment - 04/Sep/08 07:38 PM
I fear this being put into a timer based script, with the names of 50 or so common griefer tools and left running ad infinitum. While the system load would be small with just one land owner doing it, once this scripted device is sold as an Anti-Griefer tool and more and more land owners get it the system load could grow exponentially.

Maggie Darwin added a comment - 05/Sep/08 10:58 AM
Nice idea. Voted.

I'd also like to offer my personal congratulations to Glitchez for knowing the difference between "affect" and "effect", so rare on pjira.


Maggie Darwin added a comment - 05/Sep/08 10:59 AM
I do agree with Shibari's concern though. Maybe the wildcard owner key aspect is a bad idea.

Gltchez Skytower added a comment - 07/Sep/08 03:05 PM
Added Examples Page

stephe ehrler added a comment - 11/Sep/08 10:37 PM
nice idea but is this a "major" issue??

Player Dagostino added a comment - 31/Mar/09 01:02 AM
good idea! anyway i would restrict such a function to the land owner only

Kopilo Hallard added a comment - 07/Nov/09 07:35 PM - edited
I've wanted to make a gun to remove prims I shoot... I think this would be fun for any land owner.