Difference between revisions of "Be happy"

From Second Life Wiki
Jump to navigation Jump to search
Line 5: Line 5:
//be happy
//be happy


default
default
{
  {
     state_entry()
     state_entry()
     {
     {
        llRequestPermissions(llGetOwner(),PERMISSION_TRIGGER_ANIMATION);
        llRequestPermissions(llGetOwner(),PERMISSION_TRIGGER_ANIMATION);
        llSetTimerEvent(5.0);
        llSetTimerEvent(5.0);
     }
     }
 
    timer()
    timer()
     {
     {
        llStartAnimation("express_toothsmile");
        llStartAnimation("express_toothsmile");
     }
     }
      
      
    attach(key moo)
    attach(key moo)
    {
    {
        if(moo != NULL_KEY)
        if(moo != NULL_KEY)
        {
        {
            llResetScript();
            llResetScript();
        }
        }
    }
    }
}
}

Revision as of 08:30, 21 September 2008

Be Happy

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

//be happy

default
 {
   state_entry()
   {
        llRequestPermissions(llGetOwner(),PERMISSION_TRIGGER_ANIMATION);
        llSetTimerEvent(5.0);
   }

    timer()
   {
        llStartAnimation("express_toothsmile");
   }
   
    attach(key moo)
    {
        if(moo != NULL_KEY)
        {
            llResetScript();
        }
    }
}