I downloaded quake sounds in .wav format and added it on player kill
Code Select
[ if (killer.Score == 1) PlaySound( player.UniqueWorld , 50000 , killer.Pos );
else if (killer.Score == 6) PlaySound( player.UniqueWorld , 50001 , killer.Pos );
else if (killer.Score == 2) PlaySound( player.UniqueWorld , 50002 , killer.Pos );
else if (killer.Score == 3) PlaySound( player.UniqueWorld , 50003 , killer.Pos );
else if (killer.Score == 4) PlaySound( player.UniqueWorld , 50004 , killer.Pos );
else if (killer.Score == 5) PlaySound( player.UniqueWorld , 50005 , killer.Pos );
but sound does not play.