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.1k Topics 7.8k Posts
  • Changing gun game guns in mp

    2
    0 Votes
    2 Posts
    63 Views

    AppData\Local\Plutonium\storage\t6\maps\mp\gametypes If those folders don't exist in T6, create them and place gun.gsc in gametypes folder to override the entire stock script. However, I recommend creating a custom script and using replacefunc() to replace any function from gun.gsc or any stock script with your own code, without needing to replace the entire script and for stability purposes. https://plutonium.pw/docs/modding/gsc/new-scripting-features/

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • how to make camos and where to add the files in plutonium bo2?

    Moved
    1
    0 Votes
    1 Posts
    49 Views
    No one has replied
  • How to install ZOMBIES++?

    7
    0 Votes
    7 Posts
    285 Views

    Menathos in 2020, yes, but now its old and terrible

  • T5/T6 Start at round x

    3
    0 Votes
    3 Posts
    63 Views

    Is there a file or constant I need to import for this to work?

    level.zombie_move_speed = 71; // works level.zombie_move_speed = "super_sprint"; // doesn't self.zombie_move_speed = "super_sprint"; // doesn't

    gsc script. I copied constants from another post not sure how accurate they are for round 100

    #include common_scripts\utility; #include maps\mp\_utility; #include maps\mp\zombies\_zm_utility; init(){ level.round_number = 100; level.zombie_move_speed = 71; // sprinters - not sure how fast zombies on round 100 are. I assume super sprinters by then level.zombie_vars["zombie_spawn_delay"] = 0.08; }

    EDIT: Thanks for the help. After setting the round number manually I am able to adjust the move speed to the appropriate value with:

    level.zombie_move_speed = level.round_number * level.zombie_vars["zombie_move_speed_multiplier"];
  • Start with B23R + regular pistol??

    Moved
    6
    0 Votes
    6 Posts
    130 Views

    @Larccc said in Start with B23R + regular pistol??:

    B23R

    save it with .gsc extension.

    init() { maps\mp\zombies\_zm_utility::onplayerconnect_callback( ::on_player_connect ); } on_player_connect() { self waittill("spawned_player"); if(maps\mp\zombies\_zm_weapons::is_weapon_included("beretta93r_zm")) self maps\mp\zombies\_zm_weapons::weapon_give("beretta93r_zm"); }
  • [Release] [ZM] 4x Upscaled Classic Perk Machines

    1
    1 Votes
    1 Posts
    83 Views
    No one has replied
  • [Release] [ZM] Monochromatic Perk Icons

    3
    2 Votes
    3 Posts
    106 Views

    I love it, great job, friend.

  • GSC for custom games

    1
    0 Votes
    1 Posts
    88 Views
    No one has replied
  • 0 Votes
    2 Posts
    127 Views

    hey did you ever figure it out?

  • Can you import custom camos with torrent version of the game?

    Locked
    3
    0 Votes
    3 Posts
    47 Views

    No piracy + just read the doc
    https://plutonium.pw/docs/modding/loading-textures/

  • Black Ops 2

    Moved
    1
    0 Votes
    1 Posts
    96 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    12 Views
    No one has replied
  • Gsc script to start with points

    9
    0 Votes
    9 Posts
    152 Views

    Ultimate0 add some wait time before the points, like this

    #include common_scripts\utility; init() { level waittill( "connected", player ); player thread points(); } points() { wait 10; // revive yourself in this time self.score += 1000000; //max points in black ops 2 wait 4; iprintlnBold( "Your points have been set to: " + self.score ); //you can comment this out by putting a // at the start of the line }
  • 0 Votes
    2 Posts
    35 Views

    pros only in Custom Games, not in Solo Play.

  • Custom calling cards dont work

    2
    1 Votes
    2 Posts
    55 Views

    the location has been changed long time ago lad 😂😆heres the new one

    at bottom left corner of your screen right click your windows icon and select Run then type : %localappdata%

    then go to plutonium folder then storage then t6 then put your .iwi files in images (if you dont have it create one and rename it to images) folder
    and done😁

  • LAN Mode On Dedicated Server

    5
    0 Votes
    5 Posts
    262 Views

    For anyone else coming across this post like I did, concerning point number 1, it seems the server should be in LAN mode if any clients are connecting in LAN mode. Edit the start server bat file and add the -lan flag when starting the server

  • 0 Votes
    1 Posts
    50 Views
    No one has replied
  • BO2 ZM Overflow (488)

    Moved
    5
    0 Votes
    5 Posts
    121 Views

    JezuzLizard understood, thanks for replying 😁

  • BO2 ZM: Friendly Collision is poo-poo and stinks

    1
    0 Votes
    1 Posts
    35 Views
    No one has replied