Difference between revisions of "Be happy"
Jump to navigation
Jump to search
Kireji Haiku (talk | contribs) m (a few minor readability improvements) |
m (<lsl> tag to <source>) |
||
Line 1: | Line 1: | ||
Put this script in an attachment to make your avatar smile. | Put this script in an attachment to make your avatar smile. | ||
< | <source lang="lsl2"> | ||
// be happy | // be happy | ||
Line 32: | Line 32: | ||
} | } | ||
} | } | ||
</ | </source> | ||
{{LSLC|Examples|Be happy}} | {{LSLC|Examples|Be happy}} |
Revision as of 13:08, 24 January 2015
Put this script in an attachment to make your avatar smile.
// be happy
default
{
attach(key attached)
{
if (attached)
llResetScript();
// else
// has been detached
}
state_entry()
{
key owner = llGetOwner();
llRequestPermissions(owner, PERMISSION_TRIGGER_ANIMATION);
}
run_time_permissions(integer perm)
{
if(perm & PERMISSION_TRIGGER_ANIMATION)
llSetTimerEvent(5.0);
}
timer()
{
llStartAnimation("express_toothsmile");
}
}