Hey thanks! I'm doing this:
PHP Code:
if (cs_get_weapon_silen(CSW_MAKAROV))
{
set_weapon_anim(invoker, SHOOT_SILEN)
emit_sound(invoker, CHAN_WEAPON, FIRE_SOUND, VOL_NORM, ATTN_NORM, 0, PITCH_NORM)
}
else
{
set_weapon_anim(invoker, SHOOT_ANIM)
emit_sound(invoker, CHAN_WEAPON, FIRE_SOUND, VOL_NORM, ATTN_NORM, 0, PITCH_NORM)
}
but it doesn't seem to work. I'm trying to replace the shooting anim and sound on an extra weapon when it's silenced. but what happens with this is, the both anim and sound just don't work...