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.9k Posts
  • [Support] Sniper Only and VIP/Privileged users

    20
    0 Votes
    20 Posts
    1k Views
    @frosty said in Sniper Only and VIP/Privileged users: @Mr-Android Any estimate on the release of that update btw? Soon TM. You should know we don't give out dates. Software development even in a controlled business environment only provide rough estimates, so a project the Devs do in their spare time makes it near impossible to put a date range on.
  • [Support] how to fix slides

    3
    0 Votes
    3 Posts
    278 Views
    You probally looped the function. Idk how you want it but heres an example if you press crouch and melee at the same time: thread onplayerspawned() self thread spawnSlideBind(); spawnSlideBind() { for (;;) { if( self stanceButtonPressed() && self meleebuttonpressed()) self thread spawnslide(); // <- obv your slide code then } }
  • [Support] How do I make health change

    5
    0 Votes
    5 Posts
    402 Views
    stop asking stupid questions and just use google lol sorry 4 beeing toxic
  • [Support] Request: Does anyone have a decent gsc for zombies?

    4
    0 Votes
    4 Posts
    303 Views
    @Banni said in Request: Does anyone have a decent gsc for zombies?: level.start_weapon = "fiveseven_zm"; //replace fiveseven_zm with any other weapon name I just tested this. doesn't seem to work
  • 0 Votes
    2 Posts
    275 Views
    This requires memory hooking/editing which isn't "easily" done. It will also soon trigger the anticheat if run on a client rather than the server. https://forum.plutonium.pw/topic/100/in-game-chat-colored-names
  • [Support] Is there a way to do custom camos?

    7
    0 Votes
    7 Posts
    549 Views
    @Mr-Android okay thanks
  • [Support] is anyone willing to send the slide script please

    1
    0 Votes
    1 Posts
    162 Views
    No one has replied
  • [Support] need help making trickshot mod menu

    Locked
    7
    0 Votes
    7 Posts
    1k Views
    @kuxqi search bo2 menu base on google
  • [Support] How do i add unpatched bounces to my server?

    10
    0 Votes
    10 Posts
    672 Views
    @Jax Not a firm date, whenever the anticheat + other required changes are ready.
  • [Support] how do i add unlocktokens BO2 MP

    3
    0 Votes
    3 Posts
    608 Views
    @Drgn yes im tying to get unlock all for plevel 7 so i click unlock allot but not everything the put plevel 7 but dont have perks or tactical so i need the command to add unlock tokens
  • [Support] Bouncers, Slides!?

    bounce slides trickshot
    1
    0 Votes
    1 Posts
    352 Views
    No one has replied
  • [Support] AIM ASSIST FOR CONTROLLERS????

    Locked
    3
    0 Votes
    3 Posts
    463 Views
    There will never be aim assist.
  • Mod Menu for custom games (MP)

    modding modmenu
    4
    0 Votes
    4 Posts
    1k Views
    @mason No source and requires a tool that isn't even working / supported here. Re-Upload it with the source.
  • How to check if an array has that string or not?

    5
    0 Votes
    5 Posts
    267 Views
    @Enki Do you have discord or something, i would like to help/learn from you . If you don't wanna add it's all good.
  • [Support] Remove Sky Barrier? (READ)

    6
    0 Votes
    6 Posts
    572 Views
    spawncollision( "collision_physics_64x64x10", "collider", ( 1660, 40, 59 ), vectorScale( ( 0, 0, 1 ), 90 ) ); spawncollision( "collision_physics_64x64x10", "collider", ( 1633, 40, 48 ), vectorScale( ( 0, 0, 1 ), 90 ) ); spawncollision( "collision_physics_64x64x10", "collider", ( 1660, -42, 59 ), vectorScale( ( 0, 0, 1 ), 90 ) ); spawncollision( "collision_physics_64x64x10", "collider", ( 1632, -42, 48 ), vectorScale( ( 0, 0, 1 ), 90 ) ); spawncollision( "collision_physics_64x64x10", "collider", ( 904, 18, 53 ), ( 0, 270, -90 ) ); spawncollision( "collision_physics_64x64x10", "collider", ( 904, 91, 90 ), ( 0, 270, -90 ) ); spawncollision( "collision_physics_cylinder_32x128", "collider", ( -1055, 10, 216 ), vectorScale( ( 0, 0, 1 ), 90 ) ); spawncollision( "collision_clip_64x64x10", "collider", ( -1912,65, -245, -76,3463 ), vectorScale( ( 0, 0, 1 ), 282 ) ); spawncollision( "collision_physics_wall_64x64x10", "collider", ( -1064, 412, 254 ), vectorScale( ( 0, 0, 1 ), 342,8 ) ); spawncollision( "collision_physics_wall_64x64x10", "collider", ( -1112, 416,5, 284 ), vectorScale( ( 0, 0, 1 ), 316,3 ) ); you can find stuff like this in the map gsc file maybe you can do something with that but you need to fix the files first
  • [Support] Disable Function (Damage) of Grenades and Tacticals

    4
    0 Votes
    4 Posts
    382 Views
    @Beatology You are splitting the weapon string by every _ take the first element and then compare it against a string that has an _, that is why your code is not and will never work.