Quote:
Originally Posted by Wilson [29th ID]
set_pev( id, pev_team, 1 )
Replace 1 with the team value, or the team const (ie. CT, TERRORSTS, whatever you cs'ers use)
This does exactly what you want I do it in DoD all the time.
|
pev_team doesn't seem to work for me.
I've tried
PHP Code:
set_pev(id, pev_team, "CT")
set_pev(id, pev_team, "TERRORSTS")
set_pev(id, pev_team, "CS_TEAM_CT")
set_pev(id, pev_team, "CS_TEAM_T")
set_pev(id, pev_team, CS_TEAM_CT)
set_pev(id, pev_team, CS_TEAM_T)
set_pev(id, pev_team, 2)
set_pev(id, pev_team, 1)
All seem to have failed
__________________