08-09-2003, 10:55 PM
netniv, what's a respawn kill? also, how do you hit dead bodies in dm for extra points? i don't play much dm, so i don't really know...i suspect these are easy fixes.
i think what you want to do is in the statement (about 1/4 of the way down your code snippet):
if ( pev->team != pOther->pev->team )
{...
you would want:
if ((pev->team != pOther->pev->team) && (pOther->IsAlive()))
{...
is that right? please pm me. thnx.
i think what you want to do is in the statement (about 1/4 of the way down your code snippet):
if ( pev->team != pOther->pev->team )
{...
you would want:
if ((pev->team != pOther->pev->team) && (pOther->IsAlive()))
{...
is that right? please pm me. thnx.