I am using this to find hostages being spawned.
Code:
int Spawn_post(edict_t *pent)
{
// are we spawning a hostage ?
if (strcmp (STRING (pent->v.classname), "hostage_entity") == 0)
...
How do I change this to look for human players being spawned?
tx.