|
发表于 2007-4-27 19:04:16
|
显示全部楼层
来自 中国–广东–潮州
回复: 如何去掉AWP的枪声?
Post by Rulzy
这样试试:
[code]#include <fakemeta>
public plugin_init()
{
....
register_forward(EngFunc_EmitSound, "Hook_EmitSound")
....
}
public Hook_EmitSound(index, channel, sample[], Float:vol, Float:att,flags, pitch)
{
if(equali(sample,"sound/weapons/awp1.wav"))
...
一点小改动:
[php]
register_forward(FM_EmitSound, "FM_EmitSound_BlockSound")
public FM_EmitSound_BlockSound(iEnt, iChannel, const sSample[], Float: fVolume, Float: fAttenuation, iFlags, iPitch )
{
......
}
[/php] |
|