LlDeleteSubList Sample
Revision as of 07:58, 18 June 2007 by Strife Onizuka (talk | contribs)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
///////////////////////////// // Author: Bird Raven // For Use As OpenSource ///////////////////////////// default { state_entry() { // Create a list of names list names = ["Anthony", "Bob", "Charlie", "Dan", "Edgar", "Gerald"]; // Now let's remove values at position 1 through 2. names = llDeleteSubList(names, 1, 2); // Result: // list names = ["Anthony", "Dan", "Edgar", "Gerald"]; // Now let's use an start number higher then our end number names = llDeleteSubList(names, 3, 1); // Result: // list names = ["Edgar"]; } }