Difference between revisions of "User:Gordon Wendt"

From Second Life Wiki
Jump to navigation Jump to search
(adding gallery)
 
(77 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<div id="background" style="border:2px solid #AAAAAA; background-color:#EEEEEE;padding:10; visibility: visible">
{{visl
{{visl
|name=Gordon Wendt
|name=Gordon Wendt
|Mentors=*
|}}
{{skills
|Builder=*
|Builder=*
|Scripter=*
|Scripter=*
|}}
|}}


I'm Gordon Wendt, I do a little bit of everything in SL and recently was accepted into the volunteer program as a mentor
{{SL-hCard/2.0
|account=Resident
|name=Gordon Wendt
|image=GW.jpg
|rezday=May 10th 2006
|fields={{SL-hCard/field|Achievements/Tasks|
*Builder
*Scripter
}}
}}
 
{| class="quote" id="DIS" style="width:auto; margin: auto; border:2px solid #FFCC00; padding:5px; background-color: #FFF0D9;" cellpadding="4" cellspacing="4"
| <center>''"Around here, however, we don't look backwards for very long. We keep moving forward, opening up new doors and doing new things, because we're curious...and curiosity keeps leading us down new paths."''
 
<br><br>'''-Walt Disney'''</center>
|}
 
 
{| class="quote" id="Random" style="width:auto; margin: auto; border:2px solid #CCCCCC; padding:5px; background-color: #FFFFFF;" cellpadding="4" cellspacing="4"
|[[Image:Icons_parature_warning.jpg]]
|<center>'''[[Special:Random|Error 42: Universe not found,<br> please contact the mice for assistance]]'''</center>
|[[Image:Icons_parature_warning.jpg]]
|}
 
==People==
*{{User|Strife Onizuka}} - Too much useful stuff to actually describe here
*{{User|Zai Lynch}} - Wizard of the wiki markup
*{{User|Michelle2 Zenovka}} - Great cmake instructions for building the viewer
*{{User|Lex Neva}} - again, too many great contributions to count and/or describe
*{{User|Harleen Gretzky}} - one of the great people on the JIRA
*{{User|Jesse Barnett}} - Scripter Extraordinaire
 
== Useful pages ==
* [[:Category:Wizardry and Steamworks]] - only an archive now but has some useful things
 
*[[Special:Random]] - Directs to a random page on the wiki
*[[Special:SpecialPages]] - A list of all the special pages for the wiki
*[[Help:Editors_Toolbox]] - A list of helpful wiki templates
*[http://www.mediawiki.org/wiki/Help:Magic_words Mediawiki magic words page]


== Gallery ==
== Miscellaneous ==
<gallery>
[[/sandbox]] - an internal sandbox I use to test various wiki specific changes.
Image:VolMeet09280711am.jpg|Snapshot from the volunteers monthly meeting of 9/28/07 at 11:00am
</gallery>


== Free code snippets ==
[[/testbed]] - For posting my experimental ideas including scripts, scraps of code, etc... --- USE AT YOUR OWN RISK
A couple of code snippets I"m freely releasing for anyone to use


=== Naming Trick ===
[[/scripts]] - Some scripts that I have written that I am freely releasing
A cheap little trick to make the object name on the way the script name then change the object name back


<code>
[[/snippets]] - Code snippets I"m freely releasing for anyone to use


default
__NOINDEX__
{
__NOTOC__
    state_entry()
__NOEDITSECTION__
      {
          a = llGetObjectName(); // grabs the current object name and stores it so it can be restored later
          llSetObjectName(llGetScriptName() ); // changes the object name to the script name ( see advanced use for more info)
          llOwnerSay("this is the test statement"); // your test statement, said with the name of the script name
          llSetObjectName(a);// changes the object name back to what it originally was
          // ADVANCED USE: change llGetScriptName() to a string of text (surrounded by quotes ("") or just change the script name
      }
}
</code>


[[Category:English speaking Volunteers|Gordon Wendt]]
[[Category:English speaking Volunteers|Gordon Wendt]]
[[Category:English speaking Residents|Gordon Wendt]]

Latest revision as of 22:34, 23 August 2013

Profile
GW.jpg
Born:
May 10th 2006
Account:
Resident
Achievements/Tasks:
  • Builder
  • Scripter
"Around here, however, we don't look backwards for very long. We keep moving forward, opening up new doors and doing new things, because we're curious...and curiosity keeps leading us down new paths."

-Walt Disney


Icons parature warning.jpg
Error 42: Universe not found,
please contact the mice for assistance
Icons parature warning.jpg

People

Useful pages

Miscellaneous

/sandbox - an internal sandbox I use to test various wiki specific changes.

/testbed - For posting my experimental ideas including scripts, scraps of code, etc... --- USE AT YOUR OWN RISK

/scripts - Some scripts that I have written that I am freely releasing

/snippets - Code snippets I"m freely releasing for anyone to use