Skip to content

BO1 Client Support

Request support for the Plutonium T5 client, please wait at-least 1 day for a reply, it can get busy. The community is free to try to help in any thread.

1.8k Topics 5.4k Posts
  • Bo1 controller vibration setting

    Moved
    4
    0 Votes
    4 Posts
    108 Views
    It worked thx
  • How to play custom Zombie maps online

    Moved
    6
    1 Votes
    6 Posts
    2k Views
    did not work
  • Stutter in menu and game

    2
    0 Votes
    2 Posts
    68 Views
    https://plutonium.pw/docs/low-fps/
  • when im trying to open bo1 on the launcher it doesnt show up

    Moved
    2
    0 Votes
    2 Posts
    70 Views
    @ZACK99 what doesn't show up? the game? plutonium doesn't come with the game, you have to have the game and then tell plutonium where your game files are located.
  • Bo1 zombies not working

    2
    0 Votes
    2 Posts
    119 Views
    the only map that works is Five. undowloaded my game on steam redownloaded it and even did the same with plut and appdata as well. still wont work even on the other base map kino
  • Black Ops 1 Multiplayer Stats Do Not Automatically Save

    3
    0 Votes
    3 Posts
    691 Views
    A Former User?
    Hi, I'm having an issue with Call of Duty: Black Ops 1 on Plutonium (T5). Every time I play multiplayer and rank up, my progress resets after I close and reopen the game.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • What does this mean and how to fix this

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

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • maps bo1 zombie not lunch

    1
    0 Votes
    1 Posts
    58 Views
    No one has replied
  • Cannot join ongoing game BO1 Solo EE Mod

    2
    0 Votes
    2 Posts
    57 Views
    Start a private match instead of solo.
  • anyone know how to fix this error?

    2
    0 Votes
    2 Posts
    124 Views
    Is your game files from steam? You could try verify your game files through steam.
  • Zombies stuck at "Loading game session"

    1
    0 Votes
    1 Posts
    72 Views
    No one has replied
  • Some textures are BLACK!

    5
    0 Votes
    5 Posts
    243 Views
    @Hadi77KSA Okay, THANKS for help! I think this closes the discussion.
  • t5 zombies keeps crashing

    1
    0 Votes
    1 Posts
    73 Views
    No one has replied
  • i get only a blackscreen and a red 0 when trying to play zombies

    4
    0 Votes
    4 Posts
    182 Views
    [image: 1748990765709-screenshot-2025-06-03-174535.png]
  • graphic content

    4
    0 Votes
    4 Posts
    430 Views
    thanks
  • 0 Votes
    3 Posts
    371 Views
    @DirkRockface how is this done???
  • Call of duty black ops Moon

    Moved
    1
    0 Votes
    1 Posts
    100 Views
    No one has replied
  • Call of the dead easter egg reward

    2
    0 Votes
    2 Posts
    173 Views
    The completion saves in a dvar on solo, and as a stat in CO-OP. Those are also where it gets checked from. To check if the completion counted, you could create a file, name it sq_completion_check.gsc (make sure you have file name extensions enabled), paste the following snippet of code into it: init() { thread completionCheck( "COTD" ); } completionCheck( id ) { common_scripts\utility::flag_wait( "all_players_spawned" ); waittillframeend; msg = "sq_completion_check " + id + ": " + maps\_zombiemode::is_sidequest_previously_completed( id ); iPrintLn( msg ); printf( msg ); msg = "sq_completion_check " + id + " solo: " + ( isdefined( level.zombie_sidequest_solo_collectible[id] ) && HasCollectible( level.zombie_sidequest_solo_collectible[id] ) ); iPrintLn( msg ); printf( msg ); if ( !isdefined( level.zombie_sidequest_coop_stat[id] ) ) { return; } for ( i = 0; i < level.players.size; i++ ) { msg = "sq_completion_check " + id + " " + level.zombie_sidequest_coop_stat[id] + " " + level.players[i].playername + ": " + level.players[i] maps\_zombiemode::zombieStatGet( level.zombie_sidequest_coop_stat[id] ); iPrintLn( msg ); printf( msg ); wait 1; } } save the file, press Win+R, paste this path %localappdata%\Plutonium\storage\t5\scripts\sp\zom, place the file into the directory that opened, start a CotD match, then observe the output. You should see an output similar to this: sq_completion_check COTD: 1 sq_completion_check COTD solo: 1 sq_completion_check COTD ZOMBIE_COAST_EGG_COOP player_name: 1 The 1st line determines if the Easter Egg of CotD in this match is considered as previously completed. The 2nd line displays the result of what’s checked for the Easter Egg to be considered as previously completed in solo. Similarly, the 3rd line displays the result of what’s checked for the Easter Egg to be considered as previously completed in CO-OP. You’ll want the number to show as 1 at the end of the 1st line and also at the end of the 2nd line if you’re playing solo and/or at the end of the 3rd line if you’re playing co-op. Otherwise, the completion didn’t save or you didn’t fully complete the Easter Egg. Note that the end of the CotD Easter Egg is when the Wunderwaffe power-up spawns in after knifing the sparking fuse.