Difference between revisions of "User:Darwin Recreant"

From Second Life Wiki
Jump to navigation Jump to search
Line 10: Line 10:
|rezday=20th March 2007
|rezday=20th March 2007
|about=Master Scipter and owner of the [[College of Scripting Music and Science]]
|about=Master Scipter and owner of the [[College of Scripting Music and Science]]
|fields={{SL-hCard/field|Achievements|
|fields=
* Contributed to the success of the college
{{SL-hCard/field
* Creator of the Anti-Griefer HUD
|Key|a8f0b56e-e68e-4113-acec-71c57c98cc5b
* Creator of the DRUID Holodeck
|Links|data
* Non-stop scripting development
** Teleporters
** Vendors
** Anti-Griefing tools
** Scripting tools (functions)
** Useful HUD's of all sorts
* Helper to dozens of newbie/intermediate scripters
|links=
}}
}}
}}
}}
__TOC__


{{skills
{{skills
Line 37: Line 31:
{{ISO 639-3/cat-speaking|eng}}
{{ISO 639-3/cat-speaking|eng}}
{{ISO 639-3/cat-speaking|heb}}
{{ISO 639-3/cat-speaking|heb}}
== Achievements ==
* Contributed to the success of the [[College of Scripting Music and Science|College]]
* Creator of the Anti-Griefer HUD
* Creator of the DRUID Holodeck
* Non-stop scripting development
** Teleporters
** Vendors
** Anti-Griefing tools
** Scripting tools (functions)
** Useful HUD's of all sorts
* Helper to dozens of newbie/intermediate scripters


== My Wiki Articles ==
== My Wiki Articles ==
Line 42: Line 48:
* [[College of Scripting Music and Science]]
* [[College of Scripting Music and Science]]
* [[College of Scripting Music and Science/Group Guidelines]]
* [[College of Scripting Music and Science/Group Guidelines]]
* [[Template:Darwin's Scripts]]
* [[FindScreenWidth]]


== My Jira Reports ==
== My Jira Reports ==
* [https://jira.secondlife.com/browse/VWR-6493 Momentary inaccuracy with llSetPos in linked objects]
* {{Jira|VWR-6493|Momentary inaccuracy with llSetPos in linked objects}}
* [https://jira.secondlife.com/browse/SVC-3449 New function: llGetParcelAgents]
* {{Jira|SVC-3449|New function: llGetParcelAgents}}
* [https://jira.secondlife.com/browse/MISC-969 New Feature: Prim Animations - Less laggy, smoother, avatar like, animations on prims]
* {{Jira|MISC-969|New Feature: Prim Animations - Less laggy, smoother, avatar like, animations on prims}}
* [https://jira.secondlife.com/browse/SVC-3460 MONO: Script crashes sim]
* {{Jira|SEC-230|MONO: Script crashes sim}}
 
= My Scripts =
{{Darwin's Scripts|find screen width}}

Revision as of 11:55, 26 November 2008

Profile
DR moon 001.png
Born:
20th March 2007
About:
Master Scipter and owner of the College of Scripting Music and Science
Key:
a8f0b56e-e68e-4113-acec-71c57c98cc5b

Achievements

  • Contributed to the success of the College
  • Creator of the Anti-Griefer HUD
  • Creator of the DRUID Holodeck
  • Non-stop scripting development
    • Teleporters
    • Vendors
    • Anti-Griefing tools
    • Scripting tools (functions)
    • Useful HUD's of all sorts
  • Helper to dozens of newbie/intermediate scripters

My Wiki Articles

My Jira Reports

My Scripts

Find Screen Width

The script below will give the width of the screen in meters by touching anywhere on the visible face, given that the prim is a box with zero rotation and attached at one of the corner HUD attachment points. <lsl>default {

   touch_start(integer total_number)
   {
       vector scale = llGetScale();
       vector off_point = llGetLocalPos();
       vector face_pos = llDetectedTouchST(0);
       vector screen_pos = llDetectedTouchPos(0);
       
       float screen_width = ((face_pos.x-.5)*scale.y-off_point.y+screen_pos.y)*2;
       
       llOwnerSay((string)screen_width);
   }
}</lsl>