Difference between revisions of "User:Digit Ditko"

From Second Life Wiki
Jump to navigation Jump to search
(add link for script to find an avatar's active group)
 
(5 intermediate revisions by the same user not shown)
Line 6: Line 6:
I'm [http://world.secondlife.com/resident/06340496-1003-4399-a131-84bbc321dc87 Digit Ditko] a scripter and builder in Second Life®.  I found out about Second Life by reading a article in the Linux Journal and fell in love with it immediately.  Plan to stay as long as it still is running.
I'm [http://world.secondlife.com/resident/06340496-1003-4399-a131-84bbc321dc87 Digit Ditko] a scripter and builder in Second Life®.  I found out about Second Life by reading a article in the Linux Journal and fell in love with it immediately.  Plan to stay as long as it still is running.


In my daily life, I have been an industrial designer for oil and gas collection systems, a lighting and scenic designer for the theatre, a geophysicist, and software engineer.  I wrote software as a hobby for my first three careers, so I finally tried software engineering as a profession and found the one I have stayed with for 20 plus years.   
In my daily life, I have been an industrial designer for oil and gas collection systems, a lighting and scenic designer for the theatre, a geophysicist, and software engineer.  I wrote software as a hobby for my first three careers, so I finally tried software engineering as a profession and found the one I have stayed with for 25 plus years.   


My scripting in Second Life is a hobby, but I love to help others learn about it.  Please feel free to contact me in-world.
My scripting in Second Life is a hobby, but I love to help others learn about it.  Please feel free to contact me in-world.
Line 24: Line 24:


Just insure there is a call to llRequestExperiencePermissions () whenever the script is reset.  
Just insure there is a call to llRequestExperiencePermissions () whenever the script is reset.  
Scripts:
* [[User/Digit_Ditko/Detect_gender_script]]
* [[User/Digit_Ditko/experience_transport_script]]
* [[User/Digit_Ditko/experience_hud_basic_script]]
* [[User/Digit_Ditko/find_group_key_of_avatar]]


----
----

Latest revision as of 13:40, 6 July 2016

Click Image to Enlarge

About

I'm Digit Ditko a scripter and builder in Second Life®. I found out about Second Life by reading a article in the Linux Journal and fell in love with it immediately. Plan to stay as long as it still is running.

In my daily life, I have been an industrial designer for oil and gas collection systems, a lighting and scenic designer for the theatre, a geophysicist, and software engineer. I wrote software as a hobby for my first three careers, so I finally tried software engineering as a profession and found the one I have stayed with for 25 plus years.

My scripting in Second Life is a hobby, but I love to help others learn about it. Please feel free to contact me in-world.

Experience Scripting Notes:

A script that is part of an experience should always request experience permissions when ever it is reset.


This does not work.

    integer flag = llAgentInExperience (llGetOwner ());
    if (! flag)
    {
        llRequestExperiencePermissions (llGetOwner (), "");
    }

Just insure there is a call to llRequestExperiencePermissions () whenever the script is reset.

Scripts:


--Digit 09:57, 27 September 2012 (PDT)