|
|
@ -91,7 +91,7 @@ LINK_ENTITY_TO_CLASS(monster_otis, COtis); |
|
|
|
//=========================================================
|
|
|
|
//=========================================================
|
|
|
|
void COtis::AlertSound(void) |
|
|
|
void COtis::AlertSound(void) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (m_hEnemy != NULL) |
|
|
|
if (m_hEnemy != 0) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (FOkToSpeak()) |
|
|
|
if (FOkToSpeak()) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -303,7 +303,7 @@ int COtis::TakeDamage(entvars_t* pevInflictor, entvars_t* pevAttacker, float flD |
|
|
|
|
|
|
|
|
|
|
|
// This is a heurstic to determine if the player intended to harm me
|
|
|
|
// This is a heurstic to determine if the player intended to harm me
|
|
|
|
// If I have an enemy, we can't establish intent (may just be crossfire)
|
|
|
|
// If I have an enemy, we can't establish intent (may just be crossfire)
|
|
|
|
if (m_hEnemy == NULL) |
|
|
|
if (m_hEnemy == 0) |
|
|
|
{ |
|
|
|
{ |
|
|
|
// If the player was facing directly at me, or I'm already suspicious, get mad
|
|
|
|
// If the player was facing directly at me, or I'm already suspicious, get mad
|
|
|
|
if ((m_afMemory & bits_MEMORY_SUSPICIOUS) || IsFacing(pevAttacker, pev->origin)) |
|
|
|
if ((m_afMemory & bits_MEMORY_SUSPICIOUS) || IsFacing(pevAttacker, pev->origin)) |
|
|
@ -481,10 +481,10 @@ public: |
|
|
|
void KeyValue(KeyValueData *pkvd); |
|
|
|
void KeyValue(KeyValueData *pkvd); |
|
|
|
|
|
|
|
|
|
|
|
int m_iPose;// which sequence to display -- temporary, don't need to save
|
|
|
|
int m_iPose;// which sequence to display -- temporary, don't need to save
|
|
|
|
static char *m_szPoses[5]; |
|
|
|
static const char *m_szPoses[5]; |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
char *CDeadOtis::m_szPoses[] = { "lying_on_back", "lying_on_side", "lying_on_stomach", "stuffed_in_vent", "dead_sitting" }; |
|
|
|
const char *CDeadOtis::m_szPoses[] = { "lying_on_back", "lying_on_side", "lying_on_stomach", "stuffed_in_vent", "dead_sitting" }; |
|
|
|
|
|
|
|
|
|
|
|
void CDeadOtis::KeyValue(KeyValueData *pkvd) |
|
|
|
void CDeadOtis::KeyValue(KeyValueData *pkvd) |
|
|
|
{ |
|
|
|
{ |
|
|
|