Difference between revisions of "User:Ugleh Ulrik"
Ugleh Ulrik (talk | contribs) m |
Ugleh Ulrik (talk | contribs) m |
||
(8 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
|}} | |}} | ||
{{ISO_639-3/cat-speaking|eng}} | {{ISO_639-3/cat-speaking|eng}} | ||
=== About === | === About === | ||
Started Second Life in 2009 and has been a scripter since. I rarely make an appearance nowadays. Second Life had its ups and downs but lately it has been a glorified chat room instead of an experience. I wish the best to anyone viewing this page for coding or otherwise. | |||
I | |||
__TOC__ | __TOC__ | ||
Line 36: | Line 14: | ||
Below are some User-Defined functions I have created and use in most of my items. Some other scripters have helped out with improvements on some if you go to the discussion section for the "More at" links. | Below are some User-Defined functions I have created and use in most of my items. Some other scripters have helped out with improvements on some if you go to the discussion section for the "More at" links. | ||
=== Vector2List === | === Vector2List === | ||
< | <source lang="lsl2"> | ||
list Vector2List(vector v){ | list Vector2List(vector v){ | ||
return [v.x, v.y, v.z]; // *Tips a wink to Strife* | return [v.x, v.y, v.z]; // *Tips a wink to Strife* | ||
} | } | ||
</ | </source> | ||
More at [[User:Ugleh_Ulrik/Vector2List]] | More at [[User:Ugleh_Ulrik/Vector2List]] | ||
=== FirstName === | === FirstName === | ||
< | <source lang="lsl2"> | ||
string FirstName(key k){ | string FirstName(key k){ | ||
list fn = llParseString2List(llKey2Name(k),[" "],[]); | list fn = llParseString2List(llKey2Name(k),[" "],[]); | ||
Line 51: | Line 29: | ||
return firstn; | return firstn; | ||
} | } | ||
</ | </source> | ||
More at [[User:Ugleh_Ulrik/FirstName]] | More at [[User:Ugleh_Ulrik/FirstName]] | ||
=== LastName === | === LastName === | ||
< | <source lang="lsl2"> | ||
string LastName (key k){ | string LastName (key k){ | ||
list ln = llParseString2List(llKey2Name(k),[" "],[]); | list ln = llParseString2List(llKey2Name(k),[" "],[]); | ||
Line 61: | Line 39: | ||
return lastn; | return lastn; | ||
} | } | ||
</ | </source> | ||
More at [[User:Ugleh_Ulrik/LastName]] | More at [[User:Ugleh_Ulrik/LastName]] | ||
=== StringTruncate === | === StringTruncate === | ||
< | <source lang="lsl2"> | ||
string trimstring(string text, integer length) { | string trimstring(string text, integer length) { | ||
if (length < llStringLength(text)){ | if (length < llStringLength(text)){ | ||
Line 76: | Line 54: | ||
} | } | ||
} | } | ||
</ | </source> | ||
More at [[StringTruncate]] | More at [[StringTruncate]] | ||
=== GiveBulkMoney === | === GiveBulkMoney === | ||
< | <source lang="lsl2"> | ||
GiveBulkMoney(list u, integer amount){ | GiveBulkMoney(list u, integer amount){ | ||
integer a = 0; | integer a = 0; | ||
Line 89: | Line 67: | ||
} | } | ||
} | } | ||
</ | </source> | ||
More at [[User:Ugleh_Ulrik/GiveBulkMoney]] | More at [[User:Ugleh_Ulrik/GiveBulkMoney]] | ||
Line 119: | Line 97: | ||
GradientValue will take 2 vectors, beginColor, and endColor, and a percentage, and grab the color between those two based off the percentage given. | GradientValue will take 2 vectors, beginColor, and endColor, and a percentage, and grab the color between those two based off the percentage given. | ||
=== | ====TrimList==== | ||
[[TrimList]] | |||
TrimList will do the final process of trimming a whole list before its output in a dialog box. | |||
do | |||
list | |||
Latest revision as of 18:09, 3 March 2020
About
Started Second Life in 2009 and has been a scripter since. I rarely make an appearance nowadays. Second Life had its ups and downs but lately it has been a glorified chat room instead of an experience. I wish the best to anyone viewing this page for coding or otherwise.
UD Functions
Below are some User-Defined functions I have created and use in most of my items. Some other scripters have helped out with improvements on some if you go to the discussion section for the "More at" links.
Vector2List
list Vector2List(vector v){
return [v.x, v.y, v.z]; // *Tips a wink to Strife*
}
More at User:Ugleh_Ulrik/Vector2List
FirstName
string FirstName(key k){
list fn = llParseString2List(llKey2Name(k),[" "],[]);
string firstn = llList2String(fn,0);
return firstn;
}
More at User:Ugleh_Ulrik/FirstName
LastName
string LastName (key k){
list ln = llParseString2List(llKey2Name(k),[" "],[]);
string lastn = llList2String(ln,1);
return lastn;
}
More at User:Ugleh_Ulrik/LastName
StringTruncate
string trimstring(string text, integer length) {
if (length < llStringLength(text)){
length = length-1;
string newstring = llGetSubString(text,0, length) + "...";
return newstring;
}else{
return text;
}
}
More at StringTruncate
GiveBulkMoney
GiveBulkMoney(list u, integer amount){
integer a = 0;
while(a < llGetListLength(u))
{
llGiveMoney(llList2Key(u,a), amount);
++a;
}
}
More at User:Ugleh_Ulrik/GiveBulkMoney
Other Functions
ListKeyCase
User:Ugleh_Ulrik/ListKeyCase Changes the Key Case of the list, based off a PHP function called array_change_key_case.
Random String
RandomString Creates a random string, 2 examples 1 with strings and numbers, and 1 with just strings.
Time Ago
TimeAgo a function to set "time ago", i.e '3 minutes ago'.
DialogPlus
DialogPlus Dialog plus is a function that creates a dialog menu that will use more then 12 buttons.
ListAverage
ListAverage ListAverage will take all the integers from a list and return the average of all the integers.
GradientValue
GradientValue GradientValue will take 2 vectors, beginColor, and endColor, and a percentage, and grab the color between those two based off the percentage given.
TrimList
TrimList TrimList will do the final process of trimming a whole list before its output in a dialog box.