As the subject suggests does anyone know how to add new stances?
How to add new stances
Posted by Rob Harper on Thu 26 Jun 2003 10:40 PM — 2 posts, 11,170 views.
I would look in mud.h around here:
You could add to that list and then add supporting code where necessary.
/*
* Positions.
*/
typedef enum
{
POS_DEAD, POS_MORTAL, POS_INCAP, POS_STUNNED, POS_SLEEPING, POS_BERSERK,
POS_RESTING, POS_AGGRESSIVE, POS_SITTING, POS_FIGHTING, POS_DEFENSIVE,
POS_EVASIVE, POS_STANDING, POS_MOUNTED, POS_SHOVE, POS_DRAG
} positions;
You could add to that list and then add supporting code where necessary.