Difference between revisions of "User:Toady Nakamura"

From Second Life Wiki
Jump to navigation Jump to search
(added headline, photo as I continue to learn how to use this)
m
Line 1: Line 1:
== Headline text ==
== Toad's Hall ==
Toad's Hall
 
[[Image:Toady_Nakamura.jpg ]]
[[Image:Toady_Nakamura.jpg ]]


 
== Useful Scripts: ==
 
I put up "The Scrubber" because I can't find it anywhere else on this WIKI.
 
== Headline text ==
Useful Scripts:
 
 
I am putting up "The Scrubber" because I can't find it anywhere else on this WIKI.


<lsl>
<lsl>

Revision as of 13:36, 16 October 2008

Toad's Hall

Toady Nakamura.jpg

Useful Scripts:

I put up "The Scrubber" because I can't find it anywhere else on this WIKI.

<lsl> // The Scrubber Originally by Jopsy Pendragon, Feb 10 2006, Version 1 // Resets prim to default states and self-deletes // You have to remove the troublesome script yourself.

default {

   state_entry()
   {
       llSetSitText( "" );
       llSetTouchText( "" );
       llParticleSystem( [ ] );
       llSetText( "", ZERO_VECTOR, 1.0 );
       llTargetOmega( ZERO_VECTOR, 0, 0 );
       llSetCameraAtOffset( ZERO_VECTOR );
       llSetCameraEyeOffset( ZERO_VECTOR );
       llSitTarget( ZERO_VECTOR, ZERO_ROTATION );
       llSetTextureAnim( FALSE , ALL_SIDES, 1, 1, 0, 0, 0.0 );
       llOwnerSay("Prim Scrubbed Clean... ");
       llRemoveInventory( llGetScriptName() );
       // vanish without a trace...
   }

}


</lsl>