Hello Cale,
CMD> I just need to know what sort of flag is set when the player has actually
CMD> REACHED the duck position, FL_DUCKING is if they're in the process, and
CMD> I think PFLAG_DUCKING is too. Is there some combination of these flags
CMD> that would tell me?
I use this to determine whether player is crouching - always works.
if ( FBitSet( pev->flags, FL_DUCKING ) )
{
m_iMode = MODE_CROUCH;
MESSAGE_BEGIN( MSG_ONE, gmsgChangeMode, NULL, pev);
WRITE_BYTE( m_iMode );
MESSAGE_END();
}
Best regards,
Slava mailto:[EMAIL PROTECTED]
_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please visit:
http://list.valvesoftware.com/mailman/listinfo/hlcoders