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.

387 Topics 1.4k Posts
  • IW5MVM

    Moved
    2
    0 Votes
    2 Posts
    152 Views
    @kostya23232 /moved not really our problem, ask the mvm people. http://discord.gg/NYey3vH Prolly not possible to make it work in online mode tho due to the anticheat.
  • MW3 Bots Mod for Offline use?

    Locked
    5
    1 Votes
    5 Posts
    1k Views
    @BLA23 I ought to ban you for what you did right now. Disguising the download of a trash client instead of "bot mods". Consider yourself warned, don't do it again. //Locked.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    16 Views
    No one has replied
  • [chaiscript] Need help to interact with chat_message

    4
    0 Votes
    4 Posts
    224 Views
    OnNotify only catches in-game notifications that can be used in GSC scripts. Everything else is unmanaged code, alas, you can't do anything here
  • was wondering if there were any graphical mods

    2
    1 Votes
    2 Posts
    216 Views
    @Xx_tutlelover_xX yes there is you can actually make your own textures to replace the one in game but yes there are some graphic over hauls but some are map pasific
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • SERVER BROWSER NOT WORKING

    Moved
    6
    0 Votes
    6 Posts
    445 Views
    F10 or home keys open the server browser for BO2.
  • this may or may not go here

    2
    0 Votes
    2 Posts
    90 Views
    I have removed your previous post since it was in the wrong section. Your best bet is to either use Greyhound on a Steam version of the game to dump the images into .DDS, or extract the .IWD files from your main folder and find the images manually.
  • Offline Explosive Bullets

    Locked
    4
    0 Votes
    4 Posts
    723 Views
    Mate, you're not gonna get support for that from the staff. It's still cheating even if you're doing it on lan. Ask your friends or Google if you wanna use mod menus in lan that much.
  • idk if this belongs here but here it goes...

    2
    0 Votes
    2 Posts
    161 Views
    @kyslovely no they have stated before in discord that in Order for MVM to work the dev of that mod would have to reimplament that and so far they have not been able to get ahold of him
  • Scripting Updates?

    1
    7 Votes
    1 Posts
    151 Views
    No one has replied
  • Question / Help (Scripts/Codes)

    5
    0 Votes
    5 Posts
    598 Views
    @fed thank you so much. exactly what i needed.
  • hi guys any help

    Moved
    3
    0 Votes
    3 Posts
    290 Views
    there is actually, i made it but im not going to share it
  • Multiple 'Shiny'/Reflective Camos?

    2
    0 Votes
    2 Posts
    180 Views
    I think you can only do it to gold unless you can find other camos that have specular light maps for them
  • 'Cheating' Question

    3
    0 Votes
    3 Posts
    297 Views
    alright, thanks.
  • [preview] mw3 custom camos replace

    Moved
    2
    1 Votes
    2 Posts
    1k Views
    all zombies pluto mw3 i suggest very cool
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    3 Posts
    192 Views
    mmm OK i read it doesn't look to hard but how do i start the server and get the downloads for the server?
  • knockback mod

    1
    0 Votes
    1 Posts
    157 Views
    No one has replied
  • Make model solid

    3
    0 Votes
    3 Posts
    298 Views
    Alas, because of the Fields bug you cannot do this. Moreover, you make models wrong // Here is correct code snippet // but it dosn't work // entity.get("target") => exception global _airdropCollision; level.onNotify("prematch_done", fun(args) { var entity = gsc.getEnt("care_package", "targetname"); // ERROR _airdropCollision = gsc.getEnt(entity.get("target"), "targetname"); var solidPackage = gsc.spawn("script_model", [0,0,0]); solidPackage.setModel("com_plasticcase_enemy"); solidPackage.clonebrushmodeltoscriptmodel(_airdropCollision); }); On the expanses of GitHub there is an interesting source, the Chai parser for the game is implemented there, if you have a lot of free time you can implement solid models in C ++ (the addresses for calling in-game functions coincide with plutonium) fields and their number (this can be used to implement getfield in C++) "target" => 5 "targetname" => 6