|
发表于 2008-9-28 14:31:56
|
显示全部楼层
来自 中国–上海–上海–徐汇区
回复: 如何去除miscstats.sma里的C4倒计时声音
用UE32打开,找到:......
public bombTimer(){
if (--g_C4Timer > 0){
if (BombCountVoice) {
if (g_C4Timer == 30 || g_C4Timer == 20){
new temp[48]
num_to_word(g_C4Timer,temp,47)
client_cmd(0,"spk ^"vox/%s seconds until explosion^"",temp)
}
else if (g_C4Timer < 11){
new temp[48]
num_to_word(g_C4Timer,temp,47)
client_cmd(0,"spk ^"vox/%s^"",temp)
}
}
......
把相关声音代码禁掉就可以了..... |
|