• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Release] CS addon for MW2(Sounds,show damage)
#1
Hey,
I wanted to release it, i think that's funny to play,its remember me CS.

Features :

Code:
Headshot sound when you hs someone(ofc)
Monster kill sound when triple kill
Multi kill sound when multi kill
Humilation sound when you cut someone
Headshot = one shot
Show damage when you hit someone

Tutorial(if you have any _events.gsc and _damage.gsc in your mod download the addons below the tut)
So first go to maps\mp\gametypes\_damage.gsc and search for :

Code:
Callback_PlayerDamage_internal( eInflictor, eAttacker, victim, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, psOffsetTime )

and above this :
Code:
    if ( !isReallyAlive( victim ) )
        return

copy this :

Code:
    if( sMeansOfDeath == "MOD_MELEE" )
    eAttacker playLocalSound("mp_bonus_end"); // humilation sound
    
    if( sHitLoc == "head" ) {
    iDamage = 100; // headshot = kill
    eAttacker playLocalSound("mp_killstreak_airdrop"); // headshot sound
    }
    
    eAttacker iPrintLnBold("^1" + iDamage + " ^7HP"); // show damage

then go to maps\mp\_events.gsc and search for this :

Code:
    else if ( killCount == 3 )
    {
        self thread maps\mp\gametypes\_hud_message::SplashNotifyDelayed( "triplekill", maps\mp\gametypes\_rank::getScoreInfoValue( "triple" ) );
        self thread giveAdrenaline( "triple" );
        thread teamPlayerCardSplash( "callout_3xkill", self );

    }

modify to this :
Code:
    else if ( killCount == 3 )
    {
        self thread maps\mp\gametypes\_hud_message::SplashNotifyDelayed( "triplekill", maps\mp\gametypes\_rank::getScoreInfoValue( "triple" ) );
        self thread giveAdrenaline( "triple" );
        thread teamPlayerCardSplash( "callout_3xkill", self );
        self playLocalSound("mp_killstreak_ac130"); // monster kill sound
    }

then search for this :
Code:
    else
    {
        self thread maps\mp\gametypes\_hud_message::SplashNotifyDelayed( "multikill", maps\mp\gametypes\_rank::getScoreInfoValue( "multi" ) );
        self thread giveAdrenaline( "multi" );
        thread teamPlayerCardSplash( "callout_3xpluskill", self );
    }

and modify to this :
Code:
    else
    {
        self thread maps\mp\gametypes\_hud_message::SplashNotifyDelayed( "multikill", maps\mp\gametypes\_rank::getScoreInfoValue( "multi" ) );
        self thread giveAdrenaline( "multi" );
        thread teamPlayerCardSplash( "callout_3xpluskill", self );
        self playLocalSound("mp_bonus_start"); // multi kill sound
    }

then download this : http://www.mediafire.com/?48uveb4i51miq4b
and drag and drop the sound folder to your mod.

____________________________________________________________________________

If you haven't mod or haven't _events.gsc and _damage.gsc in your mod,download this : http://www.mediafire.com/?a784baba0xtzxjv
Private version(with bot) : http://www.mediafire.com/?wewc8c7cx5mjxg5


To modify the numbers of the bots in the private version go to scripts\bots.gsc and modify the file like this :
Code:
init()
{
self thread initTestClients(number of bot);
}

for example :

init()
{
self thread initTestClients(8);
}


Video :



Credits(thanks to) :
Fl0w for the modding
Creator of the cs sounds
MarshallRawR for the video


Enjoy Smile

Cordially,
Fl0w
  Reply
#2
Nice idea!
C++/Obj-Cdeveloper. Neko engine wip
Steam: Click
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Release] Windows 8.1 Fix for MW3 Server Addon master131 16 16,983 09-29-2014, 23:08
Last Post: SuperNovaAO
Brick [Release] MW3 Server Administration Addon iRoNinja 5 8,535 11-10-2013, 15:46
Last Post: Casper
  Hosting With Addon obliviron 9 6,805 11-04-2013, 22:13
Last Post: d0h!
  Issue with server addon and NAT dimitrifrom31 3 4,639 10-08-2013, 18:11
Last Post: iRoNinja
Question Help Team DAMAGE offhand E-losev 0 2,251 09-17-2013, 12:03
Last Post: E-losev
  Help Playing sounds ingame? Some 2 3,144 09-10-2013, 10:42
Last Post: Yamato
  @Nukem, and New addon E-losev 4 4,183 08-23-2013, 20:45
Last Post: yokai134
  [Request] download link server exe for addon lander 2 2,740 08-01-2013, 19:57
Last Post: lander
  Help Addon information Bandarigoda123 2 3,144 07-20-2013, 15:47
Last Post: Bandarigoda123
  [News] Show your wallpaper. Nekochan 6 4,146 07-10-2013, 19:02
Last Post: House

Forum Jump:


Users browsing this thread: 2 Guest(s)