View Single Post
What about this......
Old
  (#1)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default What about this...... - 25-02-2004

Code:
 int UTIL_GetTeam(edict_t *pEntity)
 {
    char t = g_engfuncs.pfnInfoKeyValue(g_engfuncs.pfnGetInfoKeyBuffer(pEntity), "model")[2];
    if (t == 'r' || t == 'a' || t == 'e' || t == 'c')
 	  return TEAM_TERRORIST;
    return TEAM_CT;
 }
  
Reply With Quote