View Single Post
rafaelloaa
New Member
Join Date: Mar 2013
Old 03-28-2013 , 13:57   Re: Shred Alternate v1.0.1 (2013/03/15) Shred Alert taunt sound replacer
Reply With Quote #6

This mod is amazing! Is there any way of having this for single player, as in so just I would hear it? I figured out how to change it locally so I can play a different sound clip when I taunt, but I don't know how to make it so that it will play a random one of the sounds, or even one of the sounds in order. Thanks!

EDIT: figured out how to do it. First I downloaded all the sounds to /tf/sounds/player, labelled them shred0-shred27 (the extra one is the original sound, just for kicks). I converted the files from mp3 to wav (not 100% sure if needed) using DvDVideoSoft (free, but pay attention during installation, they try to get you to install like 5 other things). Then I changed
Code:
"Taunt.GuitarRiff"
{
	"channel"	"CHAN_STATIC"
	"volume"	"1"
	"soundlevel"  "SNDLVL_95dB"

	"wave"		")player\brutal_legend_taunt.wav"
} to be
Code:
"Taunt.GuitarRiff"
{
	"channel"	"CHAN_STATIC"
	"volume"	"1"
	"soundlevel"  "SNDLVL_95dB"
"rndwave"
        {
	"wave"		")player\shred0.wav"
	"wave"		")player\shred1.wav"
	"wave"		")player\shred2.wav"
	"wave"		")player\shred3.wav"
	"wave"		")player\shred4.wav"
	"wave"		")player\shred5.wav"
	"wave"		")player\shred6.wav"
	"wave"		")player\shred7.wav"
	"wave"		")player\shred8.wav"
	"wave"		")player\shred9.wav"
	"wave"		")player\shred10.wav"
	"wave"		")player\shred11.wav"
	"wave"		")player\shred12.wav"
	"wave"		")player\shred13.wav"
	"wave"		")player\shred14.wav"
	"wave"		")player\shred15.wav"
	"wave"		")player\shred16.wav"
	"wave"		")player\shred17.wav"
	"wave"		")player\shred18.wav"
	"wave"		")player\shred19.wav"
	"wave"		")player\shred20.wav"
	"wave"		")player\shred21.wav"
	"wave"		")player\shred22.wav"
	"wave"		")player\shred23.wav"
	"wave"		")player\shred24.wav"
	"wave"		")player\shred25.wav"
	"wave"		")player\shred26.wav"
}

}
in /tf/scripts/game_sounds_player.txt. That's it! Other players still hear the basic taunt, but I hear really cool guitar riffs!

Last edited by rafaelloaa; 03-29-2013 at 00:10.
rafaelloaa is offline