Sv_Stopsound doesn't work for "id"!
I had a SV_sound2 file open, i couldn't stop the sound for one id player. But the Sv_Stopsound for the whole server works (when i trigger sv_stopsound without puting any id after the sound file name)!
Idk if i am doing it wrong or can someone help me?
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
addhook("use","testuse")
function testuse(id,event,data,x,y)
		parse("sv_sound2 " .. id .. " Lunia/BossWarning_Drake.ogg")
end
addhook("flashlight","Testflash")
function Testflash(id)
		parse("sv_stopsound Lunia/BossWarning_Drake.ogg " .. id .. "")
		print("Triggered")
end
The print triggers but the sounds doesn't stop for my id when i flashlight
sv_stopsound to id doesn't works
1 
Offline
DC
Here it is, boy: