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
12-16-2011, 08:10 AM #83
looks fake. photoshop'd much. if this is possible post a video.
12-16-2011, 02:25 PM #84
TheJaRniBoi
Why So Serious?
Originally posted by Showx View Post
looks fake. photoshop'd much. if this is possible post a video.


OMG how did you know? don't tell anyone, please remove your post. You must login or register to view this content.

on topic now, basically i was on se7ensins today and it seems one guy thought he'd ask a COD worker if would ban for prestige token glitch, then that idiot told the COD worker about the elite inspect exploit, the hidden camos like marine etc.

What a snitch, heres he little part he said about elite:
Originally posted by another user

Travis Tysco Once the details are confirmed we will announce the date that it will be released.
kaine Okay and my last thing is there are bugs in ELITE where a user can use google chrome and use inspect element to view site's script and people are able to go to the clan title editor and the level 50 titles that are locked can be unlocked via changing one thing in the script and it actually works. Also people have gotten locked camos that are for premium members only this way and ones for Wii on xbox. Also they have been able to change there classes this way to have whatever weapon they want at level 1 is this suppose to be like this or is it being fixed or will user be banned from site. Because I saw guides on how to do these things.
Travis Tysco We are aware of these exploits and are fixing them as soon as possible. People found exploiting anything related to Call of Duty or the Elite website will receive the appropriate action taken against them.
kaine Okay because people were saying some are already fixed but they found other ways i dont know, okay
kaine Okay thats it.


Source - `You must login or register to view this content.

Maybe you guys shouldn't try this, just a heads up

The following user thanked TheJaRniBoi for this useful post:

killa skillz
12-18-2011, 12:27 AM #85
I wish they would have left everything in aside from last stand, commando, and danger close.


Why take the variety away from the game?
12-20-2011, 01:41 AM #86
Majicsniper
Pokemon Trainer
Fake and gay

The following user groaned Majicsniper for this awful post:

TheJaRniBoi
12-20-2011, 01:49 AM #87
jerrmy12
At least I can fight
not fake at all
12-20-2011, 09:41 PM #88
TheJaRniBoi
Why So Serious?
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.
12-20-2011, 09:47 PM #89
SKATEorDIE____
CrimeCityGangsta
Originally posted by CODGlitcha
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.


Wow, that´s a really cool find Happy

I´m hoping to get the Intervention back ^^
12-20-2011, 09:49 PM #90
TheJaRniBoi
Why So Serious?
Originally posted by SKATEorDIE
Wow, that´s a really cool find Happy

I´m hoping to get the Intervention back ^^


the only gun which still exists from them is ak74u, the others are just images same with the camos except marine and winter
12-21-2011, 05:40 PM #91
SantaClawZ
I'm not new to this
Originally posted by CODGlitcha
the only gun which still exists from them is ak74u, the others are just images same with the camos except marine and winter


The other gun images are leftover files from MW2. Apparently IW was too lazy to remove them.

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo