User:Fred Gandt/Scripts/Functions
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
My Contributions
I have implemented a V# system to make it more obvious if a script is updated. The V# forms part of the title of each script.
If you have any comments about the content of this page please post them HERE
All my scripts are written for compilation as MONO
More Pages
Free Scripts (content constantly updating)
More Free Scripts (content constantly updating)
Even More Free Scripts (content constantly updating)
Even More More Free Scripts (content constantly updating)
Even More More More Free Scripts (content constantly updating)
Legal Stuff
The legal stuff about contributing to this wiki (worth reading).
PJIRA Issue Tracker
The issues I have filed on the PJIRA
Tuition
Tuition scripts, notes, videos and screenshots etc. (hardly any content yet)
Functions
Here are some stuffs
GetUniqueListEntries ( V1 )
Feed a list in and get out a list which contains no duplicate entries. Nice and fast.
<lsl>// V1 //
list GetUniqueListEntries(list src) {
integer index = 0; list output = []; list entry = []; do { output += (entry = llList2List(src, 0, 0)); src = llDeleteSubList(src, 0, 0); while((index = llListFindList(src, entry)) != -1) src = llDeleteSubList(src, index, index); } while(llGetListLength(src)); return output;
}</lsl>