Code: doing
June 2, 2009
// Copyright by Talvin Muircastle 2009
// This software is licensed under the Creative Commons Attribution-Share Alike 3.0 United States License.
// Find us on the web at http://blindlsl.wordpress.com
string myanimation;
integer listen_handle;
default
{ state_entry()
{listen_handle = llListen(2, “”, llGetOwner(), “doing”);}
listen( integer channel, string name, key id, string message )
{
myanimation = llGetAnimation(llGetOwner());
llOwnerSay(“You are “+ myanimation + “.”);
}
}