i use this coding to make only cts have footsteps, but it still takes away ct's footsteps.
heres what i got:
Code:
public fwdPlayerPreThink(id)
{
if(!is_user_alive(id))
return FMRES_IGNORED;
static stepSound;
if(get_user_team(id) == 2)
{
stepSound = 400;
}
else
{
stepSound = 999;
}
set_pev(id, pev_flTimeStepSound, stepSound);
return FMRES_IGNORED;
}
but it doesnt seem to work.
ive tried a lot of stuff to make it work but it wont.
can someone give me a script of how they would do it?
__________________