Raised This Month: $32 Target: $400
 8% 

Shred Alternate v1.0.1 (2013/03/15) Shred Alert taunt sound replacer


Post New Thread Reply   
 
Thread Tools Display Modes
Author
jasonfrog
Senior Member
Join Date: Mar 2008
Plugin ID:
3568
Plugin Version:
1.0.1
Plugin Category:
Fun Stuff
Plugin Game:
Team Fortress 2
Plugin Dependencies:
    Servers with this Plugin:
     
    Plugin Description:
    Replaces Shred Alert taunt sound with a random classic rock riff.
    Old 03-13-2013 , 18:07   Shred Alternate v1.0.1 (2013/03/15) Shred Alert taunt sound replacer
    Reply With Quote #1

    Shred Alternate v1.0.1 (2013/03/15) Shred Alert sound replacer

    Description:
    Replaces Shred Alert taunt sound with a random classic rock riff.

    Cvars:
    sm_shredalternate_version - Plugin version
    sm_shredalternate_enabled - Plugin enabled
    sm_shredalternate_numbersounds - The number of alternate shred sounds [default 26]
    sm_shredalternate_fileprefix - Filename prefix for alternate shred alert sounds [default "shred"]

    Installation:
    Install the plugin to the plugin directory.
    Unzip sounds.zip and upload to TF2 server and fastdownload server.

    Change Log:
    2013/03/13 - v1.0 - Initial release
    2013/03/15 - v1.0.1 - Removed unnecessary StopSound, which was caused 2 custom riffs to be played to the taunter.
    Attached Files
    File Type: zip sound.zip (2.37 MB, 1017 views)
    File Type: sp Get Plugin or Get Source (shredalternate.sp - 1560 views - 2.8 KB)

    Last edited by jasonfrog; 03-15-2013 at 09:59. Reason: Updated to v1.0.1
    jasonfrog is offline
    Woot2000
    Junior Member
    Join Date: Mar 2013
    Old 03-14-2013 , 19:09   Re: Shred Alternate v1.0 (2013/03/13) Shred Alert taunt sound replacer
    Reply With Quote #2

    When I installed this on my server, if a player used The Shred Alert taunt he would hear all the songs being played at the same time. However, those around him would hear the plugin working properly. One random guitar riff being played randomly.

    Last edited by Woot2000; 03-14-2013 at 23:07.
    Woot2000 is offline
    jasonfrog
    Senior Member
    Join Date: Mar 2008
    Old 03-15-2013 , 08:40   Re: Shred Alternate v1.0 (2013/03/13) Shred Alert taunt sound replacer
    Reply With Quote #3

    Quote:
    Originally Posted by Woot2000 View Post
    When I installed this on my server, if a player used The Shred Alert taunt he would hear all the songs being played at the same time. However, those around him would hear the plugin working properly. One random guitar riff being played randomly.
    Thanks for letting me know, I don't have the taunt myself.

    Should be fixed now, new version uploaded.
    jasonfrog is offline
    Woot2000
    Junior Member
    Join Date: Mar 2013
    Old 03-16-2013 , 01:45   Re: Shred Alternate v1.0 (2013/03/13) Shred Alert taunt sound replacer
    Reply With Quote #4

    Quote:
    Originally Posted by jasonfrog View Post
    Thanks for letting me know, I don't have the taunt myself.

    Should be fixed now, new version uploaded.
    No problem. I'm testing it on my server now.

    EDIT:It seems to work.

    Last edited by Woot2000; 03-16-2013 at 02:47.
    Woot2000 is offline
    munkle
    Member
    Join Date: Nov 2011
    Old 03-25-2013 , 15:49   Re: Shred Alternate v1.0.1 (2013/03/15) Shred Alert taunt sound replacer
    Reply With Quote #5

    wow! this is great thanks for putting these together!
    munkle is offline
    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
    lyric
    Veteran Member
    Join Date: Sep 2012
    Old 03-31-2013 , 11:19   Re: Shred Alternate v1.0.1 (2013/03/15) Shred Alert taunt sound replacer
    Reply With Quote #7

    i have sm_shredalternate_numbersounds 1 set in my sourcemod.cfg but when i restart my server sm_shredalternate_numbersounds cvar is set to 26.. what gives?
    __________________
    lyric is offline
    Cerise
    Senior Member
    Join Date: Jun 2009
    Location: debug_backtrace()
    Old 06-20-2013 , 12:49   Re: Shred Alternate v1.0.1 (2013/03/15) Shred Alert taunt sound replacer
    Reply With Quote #8

    Feature Request

    Is it possible to get a feature that would let people toggle the sound replacement (with preferences)?

    eg:

    Player A wants to keep his basic Shred Alert, he just have to type !shred to have it On/Off.

    This plugin is really appreciated but adding this would make it awesome

    regards.
    __________________
    Cerise is offline
    eminemxw88
    Senior Member
    Join Date: Dec 2009
    Old 04-03-2014 , 14:45   Re: Shred Alternate v1.0.1 (2013/03/15) Shred Alert taunt sound replacer
    Reply With Quote #9

    if it can replace other taunt sounds will be better .
    for exp:
    1.High Five Taunt.
    2.Director's Vision Taunt
    3.Schadenfreude Taunt
    4.Meet the Medic Taunt
    5.The Shred Alert Taunt

    even other taunt:
    Meet the Pyro Taunt
    The Eureka Effect
    ...then perfect mod!!!

    but i tred add other taunt sound.
    thats not working.
    someone help?

    PHP Code:
      if (StrContains(sound"brutal_legend_taunt"false) > -)
      {
       new 
    rand GetRandomInt(1g_iNumberSounds);
       
    Format(soundsizeof(sound), "shredalternate/%s%i.mp3",g_iFilePrefix,rand);
       
    EmitSoundToClient(Entsound);
       return 
    Plugin_Changed;
      }
      if (
    StrContains(sound"weapons/drg_wrench_teleport.wav"false) == 0)
      {
       
    strcopy(soundPLATFORM_MAX_PATHEurekaSound);
       
    EmitSoundToClient(Entsound);
       return 
    Plugin_Changed;
      } 

    Last edited by eminemxw88; 04-03-2014 at 14:46.
    eminemxw88 is offline
    Send a message via MSN to eminemxw88
    painn
    Member
    Join Date: Mar 2009
    Old 10-24-2014 , 08:03   Re: Shred Alternate v1.0.1 (2013/03/15) Shred Alert taunt sound replacer
    Reply With Quote #10

    hi help to modify taunt conga sound replacer add cusom music mp3 ?

    i will be grateful for any help !

    Last edited by painn; 10-24-2014 at 08:04.
    painn is offline
    Reply


    Thread Tools
    Display Modes

    Posting Rules
    You may not post new threads
    You may not post replies
    You may not post attachments
    You may not edit your posts

    BB code is On
    Smilies are On
    [IMG] code is On
    HTML code is Off

    Forum Jump


    All times are GMT -4. The time now is 23:47.


    Powered by vBulletin®
    Copyright ©2000 - 2024, vBulletin Solutions, Inc.
    Theme made by Freecode