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 9.0k Posts
  • Guns camo ?

    Moved
    4
    0 Votes
    4 Posts
    302 Views
    @saadhameed if you got a custom texture for a zombie weapon and use that guide to load it yes.
  • Clients not working

    Moved
    4
    0 Votes
    4 Posts
    225 Views
    @AlpaKing check cahz' last reply here https://forum.plutonium.pw/topic/809/support-zombie-counter-info/10?_=1620246177802
  • Mystery box texture

    1
    0 Votes
    1 Posts
    415 Views
    No one has replied
  • Black Ops 2 Theater Mode Ideas?

    Moved
    6
    0 Votes
    6 Posts
    581 Views
    @WolflexZ no, if he releases the mod as gsc files it can be loaded on plutonium but there is no way to load redacted mods (these are c# dlls i think?) on plutonium.
  • [Support] Zombie Counter info

    12
    0 Votes
    12 Posts
    3k Views
    @MrMrE Thanks but i dont have "map" folder in t6r+ i really dont understand how to do, can you make a video and send me? would be very glad !
  • [Release] [Zombies] TranZit Battle Royale

    Moved
    6
    6 Votes
    6 Posts
    1k Views
    not in my server list
  • Custom Zombie Icons (Shotgun rank)

    10
    0 Votes
    10 Posts
    1k Views
    @DreamsLost If by "those" you mean custom textures, no. you need the custom textures installed to see them.
  • How to install bo2 Reimagined

    1
    0 Votes
    1 Posts
    962 Views
    No one has replied
  • BO2 Wallbang everything HELP

    Moved
    4
    1 Votes
    4 Posts
    751 Views
    @Scripto Do you know how to because there are some replies but they got deleted
  • self iprintln doesn't work anymore

    3
    0 Votes
    3 Posts
    134 Views
    It's a known issue and a fix for it is already on the staging branch and awaits testing.
  • Need help on a small issue with my mod

    5
    0 Votes
    5 Posts
    91 Views
    @Dss0 thanks that worked
  • button cmds (usereload; attack ect)

    1
    0 Votes
    1 Posts
    100 Views
    No one has replied
  • I want to replace the PAP camos with the WaW One

    1
    0 Votes
    1 Posts
    145 Views
    No one has replied
  • Origins Staff Textures

    2
    0 Votes
    2 Posts
    459 Views
    Same process as https://forum.plutonium.pw/topic/7686 you juat have to go through textures of the DLC .ipak files
  • where do i type codes

    1
    0 Votes
    1 Posts
    101 Views
    No one has replied
  • protect to server

    1
    0 Votes
    1 Posts
    46 Views
    No one has replied
  • 0 Votes
    2 Posts
    179 Views
    @GatoXikito As long as you follow this guide you won't be banned: https://forum.plutonium.pw/topic/10/tutorial-loading-custom-gsc-scripts . Any mod you load will only work if you are the host meaning you can't cheat by joining someone else's game.
  • [Support] Zombie Counter! Help

    10
    0 Votes
    10 Posts
    1k Views
    @Don-Mishi prueba esto /* * Black Ops 2 - GSC Studio by iMCSx * * Creator : vkarl * Project : arma * Mode : Zombies * Date : 2020/03/25 - 10:53:48 * */ #include common_scripts\utility; #include maps\mp\zombies\_zm; #include maps\mp\zombies\_zm_utility; #include maps\mp\gametypes_zm\_hud_util; #include maps\mp\gametypes_zm\_hud_message; init() { level.clientid = 0; level.perk_purchase_limit = 9; level thread onplayerconnect(); drawZombiesCounter(); } onplayerconnect() { for ( ;; ) { level waittill( "connecting", player ); player.clientid = level.clientid; level.clientid++; } } createServerText(font, text, fontScale, point, relativePoint, x, y, color, glowColor, alpha, glowAlpha, sort, team) { elem = createServerFontString(font, fontScale, team); elem setPoint(point, relativePoint, x, y); elem setText(text); elem.color = color; elem.glowColor = glowColor; elem.alpha = alpha; elem.glowAlpha = glowAlpha; elem.sort = sort; return elem; } drawZombiesCounter() { level.zombiesCountDisplay = createServerFontString("Objective" , 1.7); level.zombiesCountDisplay setPoint("RIGHT", "CENTER", 315, "CENTER"); thread updateZombiesCounter(); } updateZombiesCounter() { level endon("stopUpdatingZombiesCounter"); while(true) { zombiesCount = get_current_zombie_count(); level.zombiesCountDisplay SetText("Zombies: " + zombiesCount); waitForZombieCountChanged("stopUpdatingZombiesCounter"); } } recreateZombiesCounter() { level notify("stopUpdatingZombiesCounter"); thread updateZombiesCounter(); } waitForZombieCountChanged(endonNotification) { level endon(endonNotification); oldZombiesCount = get_current_zombie_count(); while(true) { newZombiesCount = get_current_zombie_count(); if(oldZombiesCount != newZombiesCount) { return; } wait 0.05; } }
  • [Support] On-Screen Information Movement. GSC Code

    6
    0 Votes
    6 Posts
    620 Views
    Hello, an apology for the inconvenience. Do you think you can upload your already compiled zombie counter?
  • Bo1 gold camo for bo2?

    Moved
    4
    0 Votes
    4 Posts
    833 Views
    @Mxrgue I did one, if you want to take a look, follow the link to the post. https://forum.plutonium.pw/topic/9773/release-mp-zm-bo1-gold-camo-pack?_=1618254601441