default
{
state_entry()
{
llSetText("llDialog()\nTouch to have me send you a dialog",<1,1,1>,1);
llListen(826264,"","","");
}
touch_start(integer total_number)
{
llDialog(llDetectedKey(0), "This is a dialog!", ["hippo","llama"], 826264);
}
listen(integer channel, string name, key id, string m)
{
llSay(0, m);
}
}