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.

399 Topics 1.5k Posts
  • Can I get perks in care packages?

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

    Moved
    6
    9
    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
    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
    4k Views
    @LuckkSK not quite understand. can elaborate?
  • BO2 Diamond MW3 MP7

    Moved
    3
    4
    1 Votes
    3 Posts
    395 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
    559 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
    469 Views
    an-94 mod ?
  • Graphics Modding

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

    Moved camos iw5 black ops 3
    7
    1
    3 Votes
    7 Posts
    3k Views
    link broke
  • Custom Camo Help

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

    4
    0 Votes
    4 Posts
    514 Views
    @xHIGH1x Use BO1 Mod Tools. You can find it through a GitHub…
  • [GSC] to shutdown server after match

    9
    0 Votes
    9 Posts
    597 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
    149 Views
    No one has replied
  • CS:GO dust2 map

    27
    1 Votes
    27 Posts
    4k Views
    @Resxt can you please upload all cs maps
  • 0 Votes
    1 Posts
    145 Views
    No one has replied
  • IW5

    Moved
    1
    1
    0 Votes
    1 Posts
    118 Views
    No one has replied
  • no aim here surely right?

    2
    0 Votes
    2 Posts
    202 Views
    @oJubby Most player are veterans... There are some cheaters, but in your video the kills are good. QuickScoping is not that easy, and in the killcam it gets glitchy.
  • Problems with a Bots

    Moved
    4
    0 Votes
    4 Posts
    387 Views
    I also cannot change map from Seatown to, for example, Dome or Carbon. So, bots in BO2 have a better behavior than in MW3.
  • Exception Code: 0xC0000005 Crashing on dlc maps.

    1
    0 Votes
    1 Posts
    92 Views
    No one has replied
  • How to NOT get auto pro perks in Bot Warefare

    3
    0 Votes
    3 Posts
    479 Views
    @botton1 you gota make your own lan server and all those problems will be fixed. Took me forever to figure that out.