Difference between revisions of "Be happy"
Jump to navigation
Jump to search
Emmas Seetan (talk | contribs) (New page: == Be Happy == Put this script in an attachment to make your avatar smile. //Everyone should be happy! //Emmas Seetan 21 September 2008 //16:11 default { state_entry() { ...) |
Emmas Seetan (talk | contribs) |
||
Line 1: | Line 1: | ||
== Be Happy == | == Be Happy == | ||
Put this script in an attachment to make your avatar smile. | Put this script in an attachment to make your avatar smile. | ||
// | //be happy | ||
default | default | ||
Line 28: | Line 25: | ||
} | } | ||
} | } | ||
} |
Revision as of 07:29, 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(); } }
}