Post: [CODE] - Dead Man's Hand + Hidden/Removed Streaks
08-23-2012, 01:43 AM #1
TheJaRniBoi
Why So Serious?
(adsbygoogle = window.adsbygoogle || []).push({}); These are codes which I created for my V9.

This code will set a custom class which has hidden MW2 Perks, Guns, Deathstreaks, Equipment.
It will also give you the hidden quickdraw & thermal perk and dead man's hand.


    hiddenclass()
{
self maps\mp\gametypes\_hud_message:GaspldNotifyMessage("Hidden Class Set", "Enjoy", "rank_prestige10", (0, 0, 255), "mp_level_up", 7);
for (i = 0;i < 10;i++)
{
self setPlayerData( "customClasses", i, "name", "^3Hidden Class" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "weapon", "spas12" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "attachment", 0, "eotech" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "attachment", 1, "grip" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "camo", "fall" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "weapon", "deserteaglegold" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "attachment", 0, "none" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "attachment", 1, "none" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "camo", "gold" );
self setPlayerData( "customClasses", i, "perks", 0, "lightstick" );
self setPlayerData( "customClasses", i, "perks", 1, "specialty_fastsnipe" );
self setPlayerData( "customClasses", i, "perks", 2, "specialty_thermal" );
self setPlayerData( "customClasses", i, "perks", 3, "specialty_automantle" );
self setPlayerData( "customClasses", i, "perks", 4, "specialty_c4death" );
self setPlayerData( "customClasses", i, "specialGrenade", "emp_grenade" );
}
}


You must login or register to view this content.

This is another code created by me which pretty much just flashes the hidden/removed streaks on screen like Advanced UAV.

    Hiddenstreaks()
{
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airdrop_predator_missile", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("sentry_gl", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("tank", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("super_airstrike", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("littlebird_support", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_blackbox", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_mk19", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("double_uav", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("auto_shotgun", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("thumper", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airstrike", 1337);
}


You must login or register to view this content.

Here's a strange dvar effect, turns your guns with camo grey.

    self setclientdvar("r_detail", "0");


You must login or register to view this content.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 6 users say thank you to TheJaRniBoi for this useful post:

KingcreekS, Cmd-X, Vanz, Xx--AIDAN--xX, User2340034u

The following user groaned TheJaRniBoi for this awful post:

xTc
08-23-2012, 02:02 AM #2
Xx--AIDAN--xX
One Man Army
nice work man love your patches Smile
08-23-2012, 06:38 AM #3
OmGRhys-x
Are you high?
Originally posted by CODGlitcha
These are codes which I created for my V9.

This code will set a custom class which has hidden MW2 Perks, Guns, Deathstreaks, Equipment.
It will also give you the hidden quickdraw & thermal perk and dead man's hand.


    hiddenclass()
{
self maps\mp\gametypes\_hud_message:GaspldNotifyMessage("Hidden Class Set", "Enjoy", "rank_prestige10", (0, 0, 255), "mp_level_up", 7);
for (i = 0;i < 10;i++)
{
self setPlayerData( "customClasses", i, "name", "^3Hidden Class" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "weapon", "spas12" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "attachment", 0, "eotech" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "attachment", 1, "grip" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "camo", "fall" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "weapon", "deserteaglegold" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "attachment", 0, "none" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "attachment", 1, "none" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "camo", "gold" );
self setPlayerData( "customClasses", i, "perks", 0, "lightstick" );
self setPlayerData( "customClasses", i, "perks", 1, "specialty_fastsnipe" );
self setPlayerData( "customClasses", i, "perks", 2, "specialty_thermal" );
self setPlayerData( "customClasses", i, "perks", 3, "specialty_automantle" );
self setPlayerData( "customClasses", i, "perks", 4, "specialty_c4death" );
self setPlayerData( "customClasses", i, "specialGrenade", "emp_grenade" );
}
}


This is another code created by me which pretty much just flashes the hidden/removed streaks on screen like Advanced UAV.

    Hiddenstreaks()
{
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airdrop_predator_missile", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("sentry_gl", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("tank", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("super_airstrike", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("littlebird_support", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_blackbox", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_mk19", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("double_uav", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("auto_shotgun", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("thumper", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airstrike", 1337);
}



Nice Adding These 2 My Patch Smile
Thanks :P
08-23-2012, 07:17 AM #4
Since im such a I337 H@X0r, im'a modify th3s3 c0des and call th3m mIn3, JK JK JK JK JK!!!, Thank you for the Codes!
08-23-2012, 10:41 AM #5
IVI40A3Fusionz
Former Gaming Squad Member
Weren't these,

    
Hiddenstreaks()
{
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airdrop_predator_missile", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("sentry_gl", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("tank", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("super_airstrike", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("littlebird_support", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_blackbox", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_mk19", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("double_uav", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("auto_shotgun", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("thumper", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airstrike", 1337);
}


In alot of the old MW2 Patches? :confused:.

The following user thanked IVI40A3Fusionz for this useful post:

notoriousCFW
08-23-2012, 10:45 AM #6
spudeeelad
I defeated!
Originally posted by CODGlitcha
These are codes which I created for my V9.

This code will set a custom class which has hidden MW2 Perks, Guns, Deathstreaks, Equipment.
It will also give you the hidden quickdraw & thermal perk and dead man's hand.


    hiddenclass()
{
self maps\mp\gametypes\_hud_message:GaspldNotifyMessage("Hidden Class Set", "Enjoy", "rank_prestige10", (0, 0, 255), "mp_level_up", 7);
for (i = 0;i < 10;i++)
{
self setPlayerData( "customClasses", i, "name", "^3Hidden Class" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "weapon", "spas12" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "attachment", 0, "eotech" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "attachment", 1, "grip" );
self setPlayerData( "customClasses", i, "weaponSetups", 0, "camo", "fall" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "weapon", "deserteaglegold" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "attachment", 0, "none" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "attachment", 1, "none" );
self setPlayerData( "customClasses", i, "weaponSetups", 1, "camo", "gold" );
self setPlayerData( "customClasses", i, "perks", 0, "lightstick" );
self setPlayerData( "customClasses", i, "perks", 1, "specialty_fastsnipe" );
self setPlayerData( "customClasses", i, "perks", 2, "specialty_thermal" );
self setPlayerData( "customClasses", i, "perks", 3, "specialty_automantle" );
self setPlayerData( "customClasses", i, "perks", 4, "specialty_c4death" );
self setPlayerData( "customClasses", i, "specialGrenade", "emp_grenade" );
}
}


This is another code created by me which pretty much just flashes the hidden/removed streaks on screen like Advanced UAV.

    Hiddenstreaks()
{
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airdrop_predator_missile", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("sentry_gl", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("tank", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("super_airstrike", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("littlebird_support", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_blackbox", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_mk19", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("double_uav", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("auto_shotgun", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("thumper", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airstrike", 1337);
}


How exactly is Quickdraw hidden? It's just Sleight Of Hand Pro...

Unless by Quickdraw you're actually referring to fast_Snipe?
08-23-2012, 02:26 PM #7
TheJaRniBoi
Why So Serious?
Originally posted by spudeeelad View Post
How exactly is Quickdraw hidden? It's just Sleight Of Hand Pro...

Unless by Quickdraw you're actually referring to fast_Snipe?


fast_snipe is the hidden quickdraw perk

---------- Post added at 09:00 AM ---------- Previous post was at 08:59 AM ----------

Originally posted by IVI40A3Fusionz View Post
Weren't these,

    
Hiddenstreaks()
{
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airdrop_predator_missile", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("sentry_gl", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("tank", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("super_airstrike", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("littlebird_support", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_blackbox", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_mk19", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("double_uav", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("auto_shotgun", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("thumper", 1337);
wait 2.5;
self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airstrike", 1337);
}


In alot of the old MW2 Patches? :confused:.


these were found in the MW2 gsc files and just created a code for them.

---------- Post added at 09:26 AM ---------- Previous post was at 09:00 AM ----------

i was searching the mw2-cmd dump for pc and found this dvar which turns your gun grey
08-23-2012, 03:16 PM #8
spudeeelad
I defeated!
Originally posted by CODGlitcha
fast_snipe is the hidden quickdraw perk


Fair enough. Thought you were referring to specialty_quickdraw
08-24-2012, 01:03 AM #9
xMr_Adams-
Do a barrel roll!
Niceee , Adding the Hidden Class To All My Patches ^^

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo