Im using Blackrain and have not found any piece of code or tutorial on how to read if om standing, sitting or kneeling 
Ive read Apocs post about constant data and i understand one variable is holding the standing state:
Code:
public enum StandState : byte
{
Stand = 0,
Sit = 1,
SittingInChair = 2,
Sleeping = 3,
SittingInLowChair = 4,
SittingInMediumChair = 5,
SittingInHighChair = 6,
Dead = 7,
Kneeling = 8,
Type9 = 9,
}
Im guessing its "hiding" in the unitfields but could it be (descriptor)
Code:
UNIT_FIELD_BYTES_0 = OBJECT_END + 0x44,
or
Code:
UNIT_FIELD_FLAGS = OBJECT_END + 0x114,
or
Code:
UNIT_FIELD_FLAGS_2 = OBJECT_END + 0x118,
or is it something else? thanks for input!