Secutor
Perhaps these animations could be activated through /c emote, so we don't get animations we don't want when we type emotes in the talk chat. I remember a server that used these, and my character used to each grule out of a bowl. So everytime I emoted the word bowl in some description, my character would bow. Bowl.
Our system does "loose" parsing of the emotes (searching for any appearance in a phrase) only when you explicitly pass a phrase to "/e ...". When it's looking through your spoken emotes (and you can toggle whether or not you want it to do even that) it uses a strict parser, so it will
only recognize *bows* and *sleeps*, and will not recognize *eats food from a bowl* or *goes to sleep in an overly loquacious fashion*. I set it up like this intentionally to avoid exactly that problem to which you refer.
Nuclear Catastrophe
I concur. There needs to be a much better pointing emote. 1000 pesetas for anyone that comes up with a good one!
Yeah! You guys can come up with these. Scripting emotes is not hard at all. Essentially, you're just assigning a bunch of actions to a PC object.
For example, our "shakes head" emote is:
DelayCommand(0.15f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 1.0, 0.25f)));
DelayCommand(0.40f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 1.0, 0.25f)));
DelayCommand(0.60f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 1.0, 0.25f)));
DelayCommand(0.75f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 1.0, 0.25f)));
DelayCommand(0.90f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 1.0, 0.25f)));
DelayCommand(1.05f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 1.0, 0.25f)));
DelayCommand(1.20f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 1.0, 0.25f)));
Feel free to suggest some. They're pretty easy to add in.