Difference between revisions of "User:Ugleh Ulrik"
Ugleh Ulrik (talk | contribs) |
Ugleh Ulrik (talk | contribs) m |
||
Line 6: | Line 6: | ||
{{SL-hCard/2.0 | {{SL-hCard/2.0 | ||
|name=Ugleh Ulrik | |name=Ugleh Ulrik | ||
=== About === | === About === | ||
Im just your average Ugleh. I hang out in SL, helping the scripting groups with my knowledge. I script weapons, utilities, games, and pretty much anything. | Im just your average Ugleh. I hang out in SL, helping the scripting groups with my knowledge. I script weapons, utilities, games, and pretty much anything. | ||
__TOC__ | __TOC__ | ||
Revision as of 10:35, 19 April 2016
{{SL-hCard/2.0 |name=Ugleh Ulrik
About
Im just your average Ugleh. I hang out in SL, helping the scripting groups with my knowledge. I script weapons, utilities, games, and pretty much anything.
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.