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-08-2011, 04:28 PM #47
Vectriixx
Single Handily destroyed GT5 Online Happy
Originally posted by .Choco View Post
What's the code for the M240 and AK74?

I know the code for the ak but the other one.

AK code = aks74u

The following user thanked Vectriixx for this useful post:

Choco
12-08-2011, 05:01 PM #48
TheJaRniBoi
Why So Serious?
Originally posted by 97 View Post
I know the code for the ak but the other one.

AK code = aks74u


other one is M240
12-08-2011, 05:09 PM #49
remi06
Do a barrel roll!
When i try to put the ak74u , thats make my class blank Gasp
12-08-2011, 05:31 PM #50
TheJaRniBoi
Why So Serious?
just to answer few questions:

1. Are they in the coding of the game? Yes the following perks were found by checking perks.gsc of MW3:

    
specialty_explosivedamage
specialty_bulletdamage
specialty_pistoldeath
specialty_challenger
specialty_saboteur
specialty_marathon
specialty_fastmantle
specialty_rof
specialty_shellshock
specialty_gpsjammer
specialty_exposeenemy
specialty_freerunner
specialty_endgame
specialty_heartbreaker
specialty_burstfire
specialty_siege
specialty_anytwo
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


     specialty_light_armor
specialty_uav
specialty_carepackage


Same for the following which the found via the kilsltreak gsc:

    a10_support
airdrop_support
airdrop_juggernaut_gl
airdrop_juggernaut_def
airdrop_trophy
airdrop_grnd
directional_uav
double_uav
gl_turret
harrier_airstrike
helicopter_minigun
minigun_turret
mobile_mortar
uav_strike


However on elite i believe there are checks on these to stop them from working as for some killstreaks they have the // next to them.

The rest of the perks were me just testing out old name from other cods.

2. Can you use AK74U or M240 online

A. i honestly don't know i never tried it online, i bielieve the AK74u maybe a future dlc weapon as for M240 i have not idea.

---------- Post added at 12:31 PM ---------- Previous post was at 12:22 PM ----------

I also wanted to say the following:

AK47U code is aks74u and iw5_aks74u, i think this maybe a future dlc, as the m240 doesn't have iw5_ before the name. also if you inspect element or firebug the blank boxes next to them it will say empy item. I think these blank boxes are fture dlc weapons.

the m240 code is just M240 for data key and slug.

also one last thing when i try to use the ak74u my class disappears however for killstreak such as harrier this does not happen but when sent to game theres nothing there thats because the harrier has // next to it in the GSC file.

this is also proof that it exists on the elite servers, this also happened when i tried to add stopping power but when i added scrambler which doesn't exist by the way just the picture it when through fine and my classes didn't disappear.

see what i mean?
Last edited by TheJaRniBoi ; 12-08-2011 at 05:34 PM.
12-08-2011, 05:48 PM #51
Originally posted by CODGlitcha

see what i mean?

Yes, yes i do.
12-08-2011, 07:06 PM #52
I got it to change images in Elite but im not sure if it will change in game. Some of this stuff is amazing.
12-08-2011, 07:16 PM #53
NGU_V1RUZ
Do a barrel roll!
could you pm the link for firebug
12-08-2011, 08:00 PM #54
is big2k10edJB retarded??? or wtf was this?
12-08-2011, 08:24 PM #55
New York BOY !
Service Shop Owner ;
Even tho this is kind of useless, we need to start up the premium section -.-

The following user thanked New York BOY ! for this useful post:

Mr Grumpy

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo