Difference between revisions of "User:Fred Gandt/Scripts/Functions"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 7: Line 7:
== My Contributions ==
== 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.'''
'''I have implemented a V# system to make it more obvious if a function is updated. The V# forms part of the title of each function.'''


'''If you have any comments about the content of this page please post them [[User_talk:Fred_Gandt/Scripts/Functions | HERE]]'''
'''If you have any comments about the content of this page please post them [[User_talk:Fred_Gandt/Scripts/Functions | HERE]]'''


'''All my scripts are written for compilation as [[Mono|MONO]]'''
'''All my scripting is written for compilation as [[Mono|MONO]]'''


=== More Pages ===
=== More Pages ===
Line 24: Line 24:


'''[[User:Fred_Gandt/Scripts/Continued_4| Even More More More Free Scripts]]''' (content constantly updating)
'''[[User:Fred_Gandt/Scripts/Continued_4| Even More More More Free Scripts]]''' (content constantly updating)
'''Functions for specific tasks''' (this page)


=== Legal Stuff ===
=== Legal Stuff ===
Line 41: Line 43:
'''Here are some stuffs'''
'''Here are some stuffs'''


=== GetUniqueListEntries ( V1 )===
=== GetUniqueListEntries ( V1 ) ===


Feed a list in and get out a list which contains no duplicate entries. Nice and fast.
Feed a list in and get out a list which contains no duplicate entries. Nice and fast.

Revision as of 14:43, 1 May 2010

FG jpg.jpg

My Contributions

I have implemented a V# system to make it more obvious if a function is updated. The V# forms part of the title of each function.

If you have any comments about the content of this page please post them HERE

All my scripting is 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)

Functions for specific tasks (this page)

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>