Be happy

From Second Life Wiki
Revision as of 12:35, 21 September 2008 by Strife Onizuka (talk | contribs) (run_time_permissions)
Jump to navigation Jump to search

Be Happy

Put this script in an attachment to make your avatar smile.

<lsl>//be happy

default {

   state_entry()
   {
       llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION);
   }
   run_time_permissions(integer p)
   {
       if(p & PERMISSION_TRIGGER_ANIMATION)
       {
           llSetTimerEvent(5.0);
       }
   }
   timer()
   {
       llStartAnimation("express_toothsmile");
   }
   
   attach(key moo)
   {
       if(moo)
       {
           llResetScript();
       }
   }

}</lsl>