LlDeleteSubList Sample: Difference between revisions
Jump to navigation
Jump to search
Bird Raven (talk | contribs) No edit summary |
m paramaters inversion |
||
| Line 20: | Line 20: | ||
// Now let's use an start number higher then our end number | // Now let's use an start number higher then our end number | ||
names = llDeleteSubList(names, 1 | names = llDeleteSubList(names, 3, 1); | ||
// Result: | // Result: | ||
| Line 29: | Line 29: | ||
{{ | {{Sort|llDeleteSubList Sample}}{{LSLC|Library}}{{LSLC|Examples}} | ||
Revision as of 06:58, 18 June 2007
| 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"];
}
}