Skip to content

MW3 Modding Support & Discussion

Got modding questions regarding Plutonium IW5? Scripts erroring? Request help from the community here. Discuss your modding projects etc.

386 Topics 1.4k Posts
  • [Release] IW5 Mapvote

    Pinned Moved
    50
    15 Votes
    50 Posts
    7k Views

    the link doesn't work

  • anyone know the name of the mtl predator brief case?

    1
    0 Votes
    1 Posts
    10 Views
    No one has replied
  • I want to make my own mods for MW3

    2
    1 Votes
    2 Posts
    66 Views

    i think changing the title to how to make camos or textures would be better sinse mod changes or adds stuff of the gameplay😁

    if your trying to make camos you need to have these tools greyhound paint.net iwi fast convertor and photoshop ( i have an old version thats around 363 mb i dont want extra tools and shiat that i dont know how to work with them for 3 gb or somethin plus mine is portable and can convert png to dds pretty well (not working for mw3 though that boi is difrent XD) so yeah😆
    here the links what they do

    greyhound: it extracts the textures from the game in order to do that you open it then press load then you go to your mw3 bo1 or 2 game diractory and for each is difrent for bo2 once your there you go to zone then all and here is all your bo2 textures orginaized in sections but for bo1 an mw3 once your there you go to main then you have to go through all iwd files to find whach yo looking for🤣
    https://github.com/Scobalula/Greyhound/releases/download/1.23.31.0/Greyhound.V.1.23.31.0-release.zip

    paint.net: just for converting your png or jpg to dds you dont really need it if you have my old photoshop for changing bo2 only but if you want to change some of bo1 or mw3 textures i recommend having it
    https://github.com/paintdotnet/release/releases/download/v5.0.10/paint.net.5.0.10.install.anycpu.web.zip

    iwi fast converter: its in the name you just drag your iwi files in it to turn it to dds then you change the texture to whatever you want then you drag the new dds to iwi again type the number version of the cod game you want to covert it to 😁
    https://www.itsmods.com/forum/attachment.php?aid=2433

    photoshop: i mean if you dont know this one then idk what to tell ya man where have you been its your main tool for changing textures thats it there are a lot of tips and tricks you can learn and make your texture changing much faster and less stresful theyre other alternatives to photoshop go watch some youtube videos youll thank me later😆😁 (if you want my portable old version just tell me ill send it to ya)
    this is all you need to know to start texture changing animated shit is another can of poop you can see in youtube
    and for changing textures in photoshop watch this
    https://www.youtube.com/watch?v=vqgaPhVmCqA
    https://www.youtube.com/watch?v=WpqMCQ-BlzY

    (For mw3)
    if the texture you made and it turned a bit glitchy then use this tool to export and convert the .iwi file

  • Disable all Deathbarriers/killtriggers on Server

    1
    0 Votes
    1 Posts
    28 Views
    No one has replied
  • 1 Votes
    1 Posts
    39 Views
    No one has replied
  • Please help for the maps, Rundown, Chinatown and Broadcast.

    4
    0 Votes
    4 Posts
    95 Views

    Could it be turned into something other than google drive for the link to be posted here?

  • Can I get perks in care packages?

    Moved
    1
    0 Votes
    1 Posts
    43 Views
    No one has replied
  • Umbra's Camo Pack!

    Moved
    6
    3 Votes
    6 Posts
    1k Views

    Re: Umbra's Camo Pack!

    It looks like mega deleted all the files, and i no longer have them. If anybody has any of them could you share them with me? Thank you!!!

  • [Release]COD4->MW3 CUSTOM SKYBOXES

    Moved
    3
    5 Votes
    3 Posts
    1k Views

    Can you reupload? Link doesn't work

  • Bot Warfare "Bot Names" (Exclusive to IW4x and IW5 only)

    10
    0 Votes
    10 Posts
    2k Views

    LuckkSK not quite understand. can elaborate?

  • BO2 Diamond MW3 MP7

    Moved
    3
    1 Votes
    3 Posts
    179 Views

    I will soon! im working on making the sparkling than will upload ! any other weapons you guys would want?

  • Adjust Scavenger to Emulate MW2 with GSC?

    Moved
    4
    0 Votes
    4 Posts
    293 Views

    Tifosi 92 (Maybe it's late to reply this but I'll do it) I made a script to have the lethal and tactical grenades being ressuplied in MW3, so here is the script, it even ressuplies the launchers weapons in case you want it too.

    #include maps\mp\_utility; Init() { InitScavengerResupply(); } InitScavengerResupply() { level thread OnPlayerConnect(); } OnPlayerConnect() { for(;;) { level waittill("connected", player); player thread OnPlayerSpawned(); } } OnPlayerSpawned() { self endon("disconnect"); for(;;) { self waittill("changed_kit"); // Check if the player has the Scavenger perk if (self HasPerk("specialty_scavenger")) { self thread OnScavengerPickup(); } } } OnScavengerPickup() { self endon("disconnect"); self endon("death"); for (;;) { self waittill("scavenger_pickup"); self GiveMaxAmmo(); if (self HasWeapon(self GetCurrentOffhand())) { self GiveMaxAmmo(self GetCurrentOffhand()); } if (self GetWeaponAmmoStock("frag_grenade_mp") < 1) { self SetWeaponAmmoStock("frag_grenade_mp", 1); } if (self GetWeaponAmmoStock("semtex_mp") < 1) { self SetWeaponAmmoStock("semtex_mp", 1); } if (self GetWeaponAmmoStock("throwingknife_mp") < 1) { self SetWeaponAmmoStock("throwingknife_mp", 1); } if (self GetWeaponAmmoStock("bouncingbetty_mp") < 1) { self SetWeaponAmmoStock("bouncingbetty_mp", 1); } if (self GetWeaponAmmoStock("claymore_mp") < 1) { self SetWeaponAmmoStock("claymore_mp", 1); } if (self GetWeaponAmmoStock("c4_mp") < 1) { self SetWeaponAmmoStock("c4_mp", 1); } if (self GetWeaponAmmoStock("flash_grenade_mp") < 1) { self SetWeaponAmmoStock("flash_grenade_mp", 1); } if (self GetWeaponAmmoStock("concussion_grenade_mp") < 1) { self SetWeaponAmmoStock("concussion_grenade_mp", 1); } if (self GetWeaponAmmoStock("scrambler_mp") < 1) { self SetWeaponAmmoStock("scrambler_mp", 1); } if (self GetWeaponAmmoStock("emp_grenade_mp") < 1) { self SetWeaponAmmoStock("emp_grenade_mp", 1); } if (self GetWeaponAmmoStock("smoke_grenade_mp") < 1) { self SetWeaponAmmoStock("smoke_grenade_mp", 1); } if (self GetWeaponAmmoStock("trophy_mp") < 1) { self SetWeaponAmmoStock("trophy_mp", 1); } if (self GetWeaponAmmoStock("portable_radar_mp") < 1) { self SetWeaponAmmoStock("portable_radar_mp", 1); } self thread ResupplyLaunchers(); } } ResupplyLaunchers() { launchers = [ "m320_mp", "rpg_mp", "iw5_smaw_mp", "stinger_mp", "xm25_mp", "javelin_mp" ]; for (i = 0; i < launchers.size; i++) { weapon = launchers[i]; if (self HasWeapon(weapon)) { self GiveMaxAmmo(weapon); } } }
  • help IW5/ weapon mod

    4
    1 Votes
    4 Posts
    201 Views

    an-94 mod ?

  • Graphics Modding

    1
    1 Votes
    1 Posts
    115 Views
    No one has replied
  • [Release] Black Ops 3 Cherry Fizz Camo for IW5

    Moved
    7
    3 Votes
    7 Posts
    2k Views

    link broke

  • Custom Camo Help

    1
    0 Votes
    1 Posts
    64 Views
    No one has replied
  • IW5/ weapon stats

    4
    0 Votes
    4 Posts
    281 Views

    xHIGH1x Use BO1 Mod Tools. You can find it through a GitHub…

  • [GSC] to shutdown server after match

    9
    0 Votes
    9 Posts
    251 Views

    @FomroMadia agree, but with IA i can make some things to save time at my tournament...

  • [CUSTOM MENU] make a edit text box button ?

    Moved
    1
    1 Votes
    1 Posts
    88 Views
    No one has replied
  • CS:GO dust2 map

    27
    1 Votes
    27 Posts
    2k Views

    Resxt can you please upload all cs maps