Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // The Scrubber v1.3 - Jopsy Pendragon, 8/22/2007
  2. // Just drop this script on a prim that's giving you grief.
  3. // It will reset/unset most persistant prim settings that
  4. // can only be set by scripts and then remove itself.
  5. // This script is in the public domain and may be used freely.
  6. // Please leave this comment block intact if you share this script!
  7.  
  8. default
  9. {
  10.     state_entry()
  11.     {
  12.         llSetSitText( "" );
  13.         llSetTouchText( "" );
  14.         llParticleSystem( [ ] );
  15.         llSetText( "", ZERO_VECTOR, 1.0 );
  16.         llTargetOmega( ZERO_VECTOR, 0, 0 );
  17.         llSetCameraAtOffset( ZERO_VECTOR );
  18.         llSetCameraEyeOffset( ZERO_VECTOR );
  19.         llSitTarget( ZERO_VECTOR, ZERO_ROTATION );
  20.         llSetTextureAnim( FALSE , ALL_SIDES, 1, 1, 0, 0, 0.0 );
  21.         llStopSound();
  22.         llOwnerSay("This Prim is Clean... ");
  23.         llRemoveInventory( llGetScriptName() ); // vanish without a trace...
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement