Post: Hidden MW3 Elite Perks/Streaks/Weapons + New Hidden Camo TUT (Not Marine/Winter)
12-07-2011, 05:17 PM #1
TheJaRniBoi
Why So Serious?
(adsbygoogle = window.adsbygoogle || []).push({}); I found these 2 days after MW3 release. I never set anyone of them except for except Danger Close for testing but later removed them.

These are actual perks hidden in MW3 and they do work. However my method doesn't seem to work anymore but i'm sure there are numerous ways to hack the site.

My method (Doesn't seem to work), did before but now the classes disappear.


  1. Edit the data slug of a weapon/perk/streak
  2. Run tamper data and press start
  3. Click select and a box will appear which will ask you if you want to tamper.
  4. Remove the check on Continue tamper and click tamper.
  5. You will then see all the items in a better format, from there edit the data key weapon version and click ok.



UPDATE:


    
1.Ak74u when added to class makes your class disappear in elite and therefore you cannot send changes.

2.Same for M240

3. Killstreaks can be modified and are sent to MW3 game however they reset in game. For example i edited the UAV, CP, and predator into Osprey, Reaper and AC130. In my class it shows its the order Osprey, Reaper and AC130 but in game the order is Reaper AC130 and Osprey.

4. When you edit a perk i.e. Assassin to a hidden perk like stopping power and click select nothing happens. Try it and you'll see what i mean.

5. Normal perks can be edited and sent but cannot be received in MW3.

6. Guns which are not unlocked or not supposed to be primary/secondary can be edited and sent but cannot be received in MW3.

7. If you use overkill and set to primaries and then edit overkill into another red perks and then click select your classes will disappear.

8. If you put two attachments on a gun and then edit the attachment profiency into e.g kick and click select it can be edited and sent but cannot be received in MW3.

9. If you try to hack in the default weapon your class will disappear.

10. The hidden killstreaks will not work as they are in the game coding but have // next to them which stops the game from finding it.

11. Marine camo and winter camo will always work.

12. Any locked camo can be applied, sent to game but cannot be received.



These images are not fake as I don't post fake shit.

I wasn't surprise on some of these perks being hidden, however was surprised that danger close had a new picture and worse was going to be in slot 3. Imagine using that with Blastshield and Noob Tubes + Launchers. Guess IW was still going to keep it in the game but last minute removed it. Thank god it didn't make the final game.

Lastly the AK74U & M240 should be playable online, I haven't tested them.

Hidden Blue Perks:
You must login or register to view this content.

Hidden Red Perks:
You must login or register to view this content.

Hidden Green Perks:
You must login or register to view this content.

Hidden Deathstreaks
You must login or register to view this content.

Hidden Killstreaks

You must login or register to view this content.

Hidden AK74U
You must login or register to view this content.

Hidden M240
You must login or register to view this content.

More Perks I found (Ninja is a separate perk then Assassin but uses the same image slightly tweaked).
You must login or register to view this content.

Another Perk I found:
You must login or register to view this content.

Another Deathstreak found:
You must login or register to view this content.

Links below if images are broken:

https://img408.imageshack.us/img408/4170/ak74u.png
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.


Here are more hidden Perks, these have no images when you apply them in elite:

Perks show in the images:

    specialty_explosivedamage
specialty_bulletdamage
specialty_pistoldeath
specialty_challenger
specialty_saboteur
specialty_marathon
specialty_fastmantle
specialty_rof
specialty_shellshock
specialty_gpsjammer
specialty_commando
specialty_exposeenemy
specialty_freerunner
specialty_endgame
specialty_heartbreaker
specialty_burstfire
specialty_siege
specialty_anytwo


More Extra Perks:

    specialty_hardjack
specialty_extraspecialduration
specialty_hard_shell
specialty_regenspeed
specialty_luckycharm
specialty_jumpdive
specialty_feigndeath
specialty_steelnerves
specialty_blackbox
specialty_laststandoffhand
specialty_rollover
specialty_omaquickchange
specialty_onemanarmy


Here are hidden killstreaks in the game, these have no images when you apply them in elite:

    a10_support
airdrop_support
airdrop_juggernaut_gl
airdrop_juggernaut_def
airdrop_trophy
airdrop_mega
airdrop_grnd
directional_uav
double_uav
gl_turret
harrier_airstrike
helicopter_blackbox
helicopter_mk19
helicopter_minigun
minigun_turret
mobile_mortar
tank
uav_strike


Here are hidden deathstreaks in the game, these have no images when you apply them in elite:
    
specialty_light_armor
specialty_uav
specialty_carepackage


Extra Stuff (These are just images, there not actual perks)

    specialty_fastreload_upgrade 
specialty_lightweight_upgrade specialty_lightweight_upgrade
specialty_bling_upgrade
specialty_marathon_upgrade
specialty_bulletdamage_upgrade
specialty_hardline_upgrade
specialty_scavenger_upgrade
specialty_pistoldeath_upgrade
specialty_quieter_upgrade
specialty_commando_upgrade
specialty_ks_null
specialty_classified
specialty_cobra_gunner
specialty_nuke
specialty_stealth_bomber


COD4 Stuff (I don't know if these still function, however there picture shows in elite)

    specialty_parabolic
specialty_weapon_claymore
specialty_fraggrenade
specialty_specialgrenade
specialty_weapon_rpg
specialty_weapon_claymore
specialty_weapon_c4


I also found this code which shows you the range of each weapon as default.

    isLongShot( attacker, weapon, meansOfDeath, attackerPosition, victim )
{
if( isAlive( attacker ) &&
!attacker isUsingRemote() &&
( meansOfDeath == "MOD_RIFLE_BULLET" || meansOfDeath == "MOD_PISTOL_BULLET" || meansOfDeath == "MOD_HEAD_SHOT" ) &&
!isKillstreakWeapon( weapon ) && !isDefined( attacker.assistedSuicide ) )
{
// check depending on the weapon being used to kill
weaponClass = getWeaponClass( weapon );
switch( WeaponClass )
{
case [B][COLOR="#FF0000"]"weapon_pistol":
weapDist = 800;
break;
case "weapon_machine_pistol":
case "weapon_smg":
weapDist = 1200;
break;
case "weapon_assault":
case "weapon_lmg":
weapDist = 1500;
break;
case "weapon_sniper":
weapDist = 2000;
break;
case "weapon_shotgun":
weapDist = 500;
break;
case "weapon_projectile":
default:
weapDist = 1536;[/COLOR][/B] // the old number
break;}


Hidden Camo:

Other then Marine & Winter there is another camo which is hidden. I whilst editing elite, however I found this at 11 in the night and went of to bed. This means I can't post proof. I'll post it later.

For now this is the proof, I posted the an image of Digital Urban so you can see the difference.

You must login or register to view this content.

TUT
To obtain this camo just simple change existing camo in elite via firebug into this:
    data-slug="digital" data-key="digital"


Something new I found, don't know if the changes are sent as i can't test. These are the juggernaut version weapons. The M60 which the assault juggernaut has doesn't seem to work, makes your class disappear.

You must login or register to view this content.

    
Data Slug: mp412jugg
Data Slug: m60jugg
Data Slug: riotshieldjugg
Data Slug: usp45jugg

Date Key: iw5_mp412jugg
Date Key:iw5_m60jugg
Date Key:iw5_riotshieldjugg
Date Key:iw5_usp45jugg


found some more interesting stuff, this time i found it one the disc of MW3 PC version.

You must login or register to view this content.

You must login or register to view this content.

Hidden G3 Gun?
You must login or register to view this content.

Hidden Gold Desert Eagle?
You must login or register to view this content.

I am now also convinced that the AKS74U is a DLC in the game.

Reasons:

1. It has IW5 before the name, this means it was created for the new IW engine 5. Why would IW created it for MW3 and not put it online? Possible DLC.
2. It has an image on the disc and online in elite.
3. When you try a gun use this gun in elite your classes disappear.

More findings:

Hidden gun F2000 NZ3:





Hidden Perk Footage:

Last edited by TheJaRniBoi ; 02-12-2012 at 04:59 PM.

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

-Google-, -Syed-, Midnight.eGo, 04jberry, 247Yamato, Adamâ„¢, add_me, aerosoul94, AgentSexyPig, alcapoter, Alpha's Hoe, AMNE, azote, BeastyGunner96, Ben, bmxrcodol04, Brentdevent, BurnoutBoz, Chill, Colonel Shepard, Crave., Creepzoid 0___0, dcons9, DecDeviL, Drug Dealer, FAKA_ELITE, forcer911, Geigers, GetDeleted -_-, glav_pure, Jasdeep, killa skillz, lupekid, lZombieGodl, Mateen, Matheus41, Mezzid, MOHN, Monster-Energy, Mr Grumpy, Mr.Amitoz, Mr.Kane, oG GUNN3R, OwenMalz, Press ►, PryZeex, QsM, Rainbow Gravity, ReK, Relevant Is God, remi06, riotmost, RiZ-N, rockym56, Sakata, Slipperytesties, soaperman, Stansy, tenthlobbymw2, ThePlasticBling, ThereThatGuy, ThisIsBio, TONEY777, Uk_ViiPeR, Vampytwistッ, Vectriixx, xChronicModz, xMrCheatVisionx, xSOADx, xStar-, zaaheef

The following user groaned TheJaRniBoi for this awful post:

ngu me
01-17-2012, 01:09 PM #119
SKATEorDIE____
CrimeCityGangsta
Cool video...
The gameplay at first is PS3 O_o
01-18-2012, 03:47 AM #120
Originally posted by CODGlitcha
check them out yourself, simply replace the perks with the above perks using firebug


Link to firebug or whatever? I don't know what that is or where to get it, but I wanna do this..
01-18-2012, 08:14 AM #121
SKATEorDIE____
CrimeCityGangsta
Originally posted by i
Link to firebug or whatever? I don't know what that is or where to get it, but I wanna do this..


Take google chrome or just search in extras->addons for firebug Smile
01-18-2012, 12:55 PM #122
monkystyle
L33T :carling: H@X0R
Originally posted by CODGlitcha
i know, even I couldn't believe this but trust me its no fake. Open up any perk in firebug or inspect element and replace the big image which this specialty_anytwo


Are you serious about this "any two" perk lol OMFG thats hilarious!!
is it still possible to do this?
01-18-2012, 07:27 PM #123
great find m8 :y:
01-18-2012, 10:12 PM #124
Originally posted by SKATEorDIE
Take google chrome or just search in extras->addons for firebug Smile


No clue what you mean! I've become a noob at this stuff since I stopped doing it.
01-18-2012, 10:32 PM #125
SKATEorDIE____
CrimeCityGangsta
Originally posted by i
No clue what you mean! I've become a noob at this stuff since I stopped doing it.


Google chrome is a browser which has the 'inspect element' function build in.
If you are useing firefox you can download the add-on called firebug. (You must login or register to view this content.)
01-18-2012, 10:44 PM #126
Originally posted by SKATEorDIE
Google chrome is a browser which has the 'inspect element' function build in.
If you are useing firefox you can download the add-on called firebug. (You must login or register to view this content.)


My laptop is the only computer in my house that has Explorer.... stare
I'll download Google Chrome, thanks.
01-19-2012, 01:07 AM #127
Savant
Trap And Dubstep Lifestyle
There Probably Going To Make these Available with a Map Pack or Something Im sure of it There Just Give people a Patch Download were they Removed all The //

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo