Skip to content

BO2 Modding Support & Discussion

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

2.3k Topics 8.8k Posts
  • [Support] Promod Servers?

    4
    0 Votes
    4 Posts
    231 Views

    But a single dvar change won't turn it into a Promod either, plenty of stuff that has to be removed or restricted.

  • [Support] XUID Menu Template?

    5
    0 Votes
    5 Posts
    249 Views

    Ducxy Yeah I had a look at both your templates prior to posting this as I haven't touched a GSC file since I used to use my old Jailbreak; I couldn't get the menu to work after I'd added functions and compiled so that's why I was searching for a pre made one with basic functions.
    I've taken some time and believe I've managed to get it working with my added functions after using your menu base so I might be all good.

  • [Support] Make slides stronger

    Moved
    8
    0 Votes
    8 Posts
    304 Views

    yea what Sass said. if it doesnt do anything, you may have corrupted game files. Mine were not launching me like they were supposed to and it turns out my player files were corrupted. simply deleted it and re launched the game and they worked

  • [Support] Looking for bounces

    2
    0 Votes
    2 Posts
    253 Views

    NaqzYTH said in Looking for bounces:

    I am looking for a bounces gsc file since the exe will get you banned when the anti-cheat comes out but cannot find it can someone help?

    When the update comes out the exe will be automatically replaced with the correct one. So you are safe to use that one until then. Bounce depatch will also be included as a dvar in the next update as said here so you won't need a gsc script for it then

  • [Support] Unkillable after opening admin menu - NEED HELP! :(

    4
    0 Votes
    4 Posts
    161 Views

    Soccer1978 Your menu may enable god mode while the menu is open but then never turn it off or something, or its just called somewhere when it's not supposed to.

  • [Support] how can i configure IW4admin

    Locked Moved
    5
    0 Votes
    5 Posts
    392 Views

    Basically what the others here have said. There is an official setup guide that has been linked and there is also an official Discord for IW4MAdmin if you click here. Locked.

  • 0 Votes
    2 Posts
    384 Views

    Add self setPerk("specialty_fallheight"); somewhere in your onPlayerSpawned() function (see example below)

    onPlayerSpawned() { self endon("disconnect"); level endon("game_ended"); for(;;) { self waittill("spawned_player"); self setPerk("specialty_fallheight"); } }
  • [Support] How to add my own binds for codings

    4
    0 Votes
    4 Posts
    297 Views

    Blessa do it using an "if" function, for example

    if(self actionslottwobuttonpressed()); { self suicide(); }

    doing this would kill yourself by pressing down on dpad.

  • [Support] How could I change map rotation dynamically?

    Locked
    6
    0 Votes
    6 Posts
    534 Views

    Question was answered so the thread will be locked.

  • [Support] Super ladder GSC?

    Locked
    6
    0 Votes
    6 Posts
    236 Views

    lula Then research GSC further, you will not be spoonfed. That's not what we are here for. "Just tried it and it didn't work" is useless. Next time provide better responses. Show code examples etc.

    The answer to OP's question has been answered by sass, as such I'll be locking the thread.

  • [Support] Can someone help me with this.. Please!

    15
    0 Votes
    15 Posts
    405 Views

    Soccer1978 I am releasing a newer updated version!

  • [Resource] XUID MENU BASE

    9
    0 Votes
    9 Posts
    790 Views

    Where do i place these files

  • [Support] Cant get the VIP Menu to work

    10
    0 Votes
    10 Posts
    298 Views

    mikzy sounds kinda stupid but where can i edit the menu then 🥺

  • [Support] One Man Army

    Moved
    2
    0 Votes
    2 Posts
    136 Views

    Farzad Here's a script that will allow you to switch classes mid-game :

    forceClassChange() { self endon("death"); self endon("disconnect"); for(;;) { self waittill("changed_class"); self maps/mp/gametypes/_class::giveloadout( self.team, self.class ); } }

    Now I'm not sure you can create OMA like it was in MW2, with it being a perk etc... You can take the script from above, add a loading bar and make it work with only a certain weapon to pretend it's an OMA, but that's the best you can do.

  • [Support] Custom Commands GSC Script?

    9
    0 Votes
    9 Posts
    862 Views

    Drgn - or anyone else that wants it - if you want me to test it on steam bo2 im willing to 🙂

  • [Support] camochanger/canswap

    23
    0 Votes
    23 Posts
    2k Views

    Sass thank you 🙏🏼 I fixed

  • [Support] DOES ANYONE KNOW HOW to save out of map trickshoting

    8
    0 Votes
    8 Posts
    324 Views

    Sass what part of my code shoul i share

  • 0 Votes
    3 Posts
    350 Views

    Blessa You need to have a .gsc file going, here's what you need to put in it :

    Step 1:
    Put this in init() : level.onplayerdamage = ::onplayerdamage;

    Step 2:
    Put this anywhere in your file :

    onplayerdamage( einflictor, eattacker, idamage, idflags, smeansofdeath, sweapon, vpoint, vdir, shitloc, psoffsettime ) { if(!isSubStr(sweapon, "svu_") && !isSubStr(sweapon, "dsr50_") && !isSubStr(sweapon, "ballista_") && !isSubStr(sweapon, "xpr50_") && smeansofdeath != "MOD_MELEE" && smeansofdeath != "MOD_EXPLOSIVE" && smeansofdeath != "MOD_GRENADE") self.health = 100; }

    Edit: added grenade damage

  • [Support] help adding xuid verification to menu

    8
    0 Votes
    8 Posts
    383 Views

    @MrDucxy what postt is it ???

  • [Support] Help removing menu options for players.

    6
    0 Votes
    6 Posts
    260 Views

    frosty nvm forgot the second = sign