Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

DJseanyBundefined

DJseanyB

@DJseanyB
About
Posts
37
Topics
2
Shares
0
Groups
0
Followers
4
Following
2

Posts

Recent Best Controversial

  • I CANT FIND THE MOD TOOLS FOR BO2
    DJseanyBundefined DJseanyB

    GamingProX66

    https://github.com/Laupetin/OpenAssetTools

    This is the mod tools you can use for black ops 2. Its still very limited as its still being massively worked on, but its semi easy to use and you can find documentation on the web as well as the github of the project for information and how it works. "Custom maps" are possible if you consider maps like the Simpsons and Minecraft map from the forums "Custom" but its still got a looooong way to go as far as "Custom" goes. Developments have been added recently that allow this to be expanded but if your looking for something similar to radiant, nothing like it exist publicly atm

    BO2 Modding Support & Discussion

  • What happened to Z tavern ?
    DJseanyBundefined DJseanyB

    IIXexiseII He closed the server and released his scripts to the public, so he could get a job and focus on himself.

    General Discussion zombies

  • Black Ops 1 Server Round Lock ( Customizable )
    DJseanyBundefined DJseanyB

    could alternatively use iprintlnbold in replace of iprintln to display it in center of screen

    BO1 Modding Releases & Resources

  • Black Ops 1 Server Round Lock ( Customizable )
    DJseanyBundefined DJseanyB

    MBHGB Yeah you can do that with a pretty simple Hud element. Just have it display where you want it on the screen and destroy it after sometime. The script i sent will display it at the start of every round so they should have no issue making a note of the password

    BO1 Modding Releases & Resources

  • Black Ops 1 Server Round Lock ( Customizable )
    DJseanyBundefined DJseanyB

    What This Script Does:

    • Keeps your server unlocked until a round YOU choose.

    • Once that round hits, it locks the server and generates a random 4-digit password.

    • Tells players the password and how to rejoin using the console.

    How It Works:

    • Before the round you choose, anyone can join like normal.

    • After the round you set, BOOM, the server locks.

    Players will see a message in the game with the password. Message will repeat in between each round so players don't forget

    
    #include common_scripts\utility;
    #include maps\_utility;
    
    init()
    {
        executeCommand( "g_password \"\"" );
        level thread SetPasswordsOnRound( 35 );
        level.locked = false; 
    }
    
    setPasswordsOnRound( roundNumber )
    {
        level endon( "disconnect" );
    
        while ( true ) 
        {
            level waittill( "between_round_over" );
            if ( level.round_number >= roundNumber )
            {
                level.locked = true; 
                pin = generateString();
                executeCommand("g_password " + pin);
                executeCommand("password " + pin);
    
                level thread messageRepeat( "^2Server is now locked. Use password ^1" + pin + " ^2to rejoin." );
                break;
            }
        }
    }
    messageRepeat( message )
    {
        level endon( "disconnect" );
        
        while ( true )
        {
            iPrintLn( message );
            level waittill( "between_round_over" );
        }
    }
    
    generateString()
    {
        str = "";
    
        for ( i = 0; i < 4; i++ )
        {
            str = str + randomInt( 10 );
        }
    
        return str;
    }
    
    
    BO1 Modding Releases & Resources

  • couldn't exec dedicated_zm.cfg
    DJseanyBundefined DJseanyB

    He messaged me and i got him sorted, hes good to go

    BO2 Server Hosting Support

  • BO2 Plutonium Dying ? Seems the player base has dropped by 50% in the last few months.
    DJseanyBundefined DJseanyB

    It will likely pick back up after Christmas. My bot has seen it get as low as 38 players in servers on t6 zombies. It peaks around 200-300 nowadays. ( In Servers )

    General Discussion

  • Tranzit Revamped | Warmer Days Mod 2025 | Updated January 29th, 2025
    DJseanyBundefined DJseanyB

    GhostRider0125 Both of these can be added via GSC

    BO2 Modding Releases & Resources

  • [Release] [ZM] [Mod] zm_weapons - Adding all weapons to maps
    DJseanyBundefined DJseanyB

    FaZe Flick This works for all the maps.... For example if its a sub map of transit it will work for transit ( Farm, Town, Bus depot, Ect... )

    BO2 Modding Releases & Resources

  • Tranzit Revamped | Warmer Days Mod 2025 | Updated January 29th, 2025
    DJseanyBundefined DJseanyB

    People seem to really like this mod, i put up a server with it and currently has 7/8 people in it. No crashes in the last 2 day seems stable

    BO2 Modding Releases & Resources

  • [Release] [ZM] [Mod] zm_weapons - Adding all weapons to maps
    DJseanyBundefined DJseanyB

    This mod works great if used correctly, Keep up the good work Sehteria

    BO2 Modding Releases & Resources

  • [Release] [ZM] [Mod] zm_perks - Adding all perks to maps
    DJseanyBundefined DJseanyB

    sehteria https://forum.plutonium.pw/topic/37657/zm-release-nuketown-perks-manager?_=1727910912186

    BO2 Modding Releases & Resources

  • [Release] [ZM] [Mod] zm_weapons - Adding all weapons to maps
    DJseanyBundefined DJseanyB

    sehteria Can you add a donation link to the github????

    BO2 Modding Releases & Resources

  • Ask
    DJseanyBundefined DJseanyB

    you mean like the pluto forums?

    General Discussion

  • zombies
    DJseanyBundefined DJseanyB

    YES! i know how, download full game and DLC from steam

    General Discussion

  • Reason for the water mark
    DJseanyBundefined DJseanyB

    just out of curiosity does this use a hud element?

    BO2 Client Support

  • server hosting limits
    DJseanyBundefined DJseanyB

    I have 30 servers up with no issue but also on 4 different vps's, had a issue when i was on 1 VPS could only have 29 servers

    BO2 Server Hosting Support

  • Can't play Origins?
    DJseanyBundefined DJseanyB

    download the DLC on steam

    BO2 Client Support

  • Exception Code: 0xC0000005 Exception Address: 0x0054162C
    DJseanyBundefined DJseanyB

    JezuzLizard I know you prolly don't care to hear this coming from me. But I hugely appreciate all the time and effort y'all put into this project. Like this guy said hes a software dev himself xD shiiiiiiitt id like to see him accomplish 1/500th of what yall have made for use

    BO2 Client Support
  • 1
  • 2
  • 1 / 2
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate