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

Plutonium

Astrooleanundefined

Astroolean

@Astroolean
About
Posts
42
Topics
3
Shares
0
Groups
0
Followers
2
Following
4

Posts

Recent Best Controversial

  • WAW Health script/mod to get 3 hit down?
    Astrooleanundefined Astroolean
    /*
     * --------------------------------------------------------------------------------
     * --- 3 Hit Down GSC Script for Call of Duty: World at War Zombies ---
     * --------------------------------------------------------------------------------
     *
     * Description:
     * This script modifies the default player damage rules in Nazi Zombies to allow
     * players to withstand two zombie hits before going down on the third hit.
     * This script does not affect the damage boost provided by the Juggernog perk.
     *
     * Installation:
     * 1. Create a new file named "three_hit_down.gsc" in your map's GSC folder,
     * located at: /root/mods/your_map_name/maps/
     * 2. Copy and paste the entire content of this script into the new file.
     * 3. Open your main map GSC file (e.g., nazi_zombie_mapname.gsc).
     * 4. At the top of your main map GSC file, add the following line:
     * #include maps\three_hit_down;
     * 5. In the main() function of your map's GSC file, add the following line
     * BEFORE maps\_zombiemode::main();
     * thread three_hit_down::init();
     *
     * Your main function should look something like this:
     * main()
     * {
     *     // Other pre-zombiemode threads
     *
     *     thread three_hit_down::init();
     *
     *     maps\_zombiemode::main();
     *
     *     // Other post-zombiemode code
     * }
     *
     * 6. Re-compile your map and run it.
     *
     * --------------------------------------------------------------------------------
    */
    
    init()
    {
        // This function will wait until all players are connected and then start
        // the monitoring process for each player.
        level flag_wait( "all_players_connected" );
    
        for(;;)
        {
            level waittill( "connected", player );
            player thread onPlayerConnect();
        }
    }
    
    onPlayerConnect()
    {
        // When a player connects, this function is threaded to them.
        // It will end if the player disconnects.
        self endon( "disconnect" );
    
        // Initialize the hit counter for this player
        self.hit_count = 0;
    
        for(;;)
        {
            // This is the core loop that monitors player damage.
            // It waits until the player is damaged. The 'eInflictor' is the entity
            // that caused the damage (in this case, a zombie).
            self waittill( "damage", damage, attacker, direction_vec, point, type, modelName, tagName, partName, iDFlags );
    
            // We only care about damage from zombies. We check the attacker's script_noteworthy
            // to ensure it's a zombie.
            if ( isdefined( attacker.script_noteworthy ) && attacker.script_noteworthy == "zombie" )
            {
                // We also don't want this to interfere with Juggernog.
                // If the player has Juggernog, we let the default damage logic handle it.
                if( !self maps\_zombiemode_perks::player_has_perk("specialty_armorvest") )
                {
                    // Increment the hit counter
                    self.hit_count++;
    
                    // If the hit count is less than 3, we prevent the player from taking damage.
                    if ( self.hit_count < 3 )
                    {
                        // Setting damage to 0 effectively negates the hit.
                        damage = 0;
                    }
                    else
                    {
                        // On the third hit, we reset the counter and let the player go down.
                        self.hit_count = 0;
                    }
                }
            }
        }
    }
    

    This was made with AI, I just generated it as soon as I saw your question on the forum. No idea if it works havnt tested it, but maybe this could be a template to build off of. I did not write this simply asked AI to make it. Maybe this could work?

    WAW Modding Releases & Resources

  • [Alpha-Release] Chronicles Reawakened Mod V1.4 [NEW UPDATE]
    Astrooleanundefined Astroolean

    DevTheGiantStyle This is literally one of the best call of duty mods ive ever played like ever besides that Tranzit remaster by UltimateMan... the only bad thing I can say about it is the controller support is horrible. I was forced to use keyboard and mouse. Don't get me wrong you can use controller. If you use controller your forced to have a sensitivity you cant change. Like its really buggy and weird. I don't know if its because I'm so used to BO2 and BO3? but I just couldn't use a controller on BO1. I don't know if its possible for you to fix the controller support, but that would be amazing. The only issue with controller support is the sensitivity and its always stuck on the highest setting. You can change it... but wont change. Always stays the same. No idea why. I just spin around super fast and cant see and control anything... its so fast you cant control it. I'm not a big fan of keyboard and mouse but still used it to play this... Is it just BO1 in general with weird controller support? because I even tried WaW and the controller was fine same with the other games. Only BO1 the controller is very very very buggy.

    I had an amazing experience playing this and 100% would recommend this to anyone and everyone.

    [edit]: so all in all the controller issue has nothing to do with this mod. your mod is fine and amazing. I just wish I could use a controller lol, I think the controller support is messed up with the game itself because even the multiplayer sensitivity wasnt working on BO1 lmfao. So yea that has nothing to do with this mod wanted to throw that out there. Just an issue I personally experienced while spending the night playing.

    BO1 Modding Releases & Resources

  • [Alpha-Release] Chronicles Reawakened Mod V1.4 [NEW UPDATE]
    Astrooleanundefined Astroolean

    DevTheGiantStyle this looks so amazing... you did an amazing job. Thank you for creating this. I was going to try it, but having issues with my pc right now. Got 2tb free on D drive and 70gb free on C drive... yet says I don't have enough space for a 2gb file lmfao... so idk what's happening to be honest, it has nothing to do with you or what you made, just a small pc issue on my end. Imma fix it tonight when I hop back on my pc and try this out. Idk if its the same where your at, but its like 100 degrees outside. I'm sweating just sitting at my pc lol...

    Later when the night cools things off imma go back upstairs and try this out it truly looks insane.
    Very excited to give this a go...

    [edit]: managed to get the download working by just uninstalling a few games lol, apparently my hard-drives are bugged or something but got it to work, downloading now imma play it tonight. Very excited, I know I said this already, but this looks amazing.

    BO1 Modding Releases & Resources

  • Black ops 2 zombies chronicles dlc5
    Astrooleanundefined Astroolean

    Please continue this? I would love to play this... I recently just found out about this dlc5

    BO2 Modding Support & Discussion

  • [Release] [ZM] BO2 Zombies: Town AI Premade Pack
    Astrooleanundefined Astroolean

    Added a Round Time and Total Time to the HUD display and also changed the prices of the custom perks after testing...

    BO2 Modding Releases & Resources

  • An actually good BO2 MP server?
    Astrooleanundefined Astroolean

    _puppygutzz The campaign is legendary...

    General Discussion

  • An actually good BO2 MP server?
    Astrooleanundefined Astroolean

    I play those servers with the bots, like the public servers but with bots, some servers are setup like that it was fun... idk if that helps. I just get really stoned and like to use a sniper... I joined a server called "Brownie" last night because it was legit THE ONLY SERVER that was sniper only but the connection was horrible and I was instantly trash talked the second I said hello in the chat... Oh and they use the hard R language frequently... so that server I would not recommend, but lemme go find the one I was playing yesterday real quick. I'm too old to trash talk just tryna play the game not argue with others about nonsense. People like that need to get a life lol...

    This is the one I was playing for a few hours yesterday:

    US|CA Chroma _Nuketown 24/7 Bots (full bots and real people if they join...)

    or

    A M E R I C A S // TDM // Best Maps 6

    idk if your from the USA but hope this helps.

    I was gonna have some fun and try some of the zombie servers today...
    all the multiplayers servers are kinda really bad... you just gotta get lucky and find one.

    General Discussion

  • Looking for people to add on Plutonium...
    Astrooleanundefined Astroolean

    I don't have discord nitro so cant join any more servers...
    Sadly I cannot join the Plutonium discord server because of that.
    So, my best bet for finding people to play with is here.
    If you wanna add me feel free, if not then all good just ignore this.

    Just looking for people to play with because i'm tired of playing solo...

    General Discussion

  • Ultimate BO2 Campaign Mod !
    Astrooleanundefined Astroolean

    Sounds awesome but I have zero idea whether or not it's even possible. If it is I'd play it.

    General Discussion

  • [Release] [ZM] BO2 Zombies: Town AI Premade Pack
    Astrooleanundefined Astroolean

    Another update made to the github, added 5 new custom powerups not originally in Town... Unlimited Ammo, Blood Money, Fire Sale, Round Skip, and Pay Taxes are all the new powerups. More explained on GitHub

    BO2 Modding Releases & Resources

  • [Release] [ZM] SpongeBob Announcer Voice
    Astrooleanundefined Astroolean

    I FINALLY GOT IT TO WORK!!!!

    my apologies I was doing it wrong and going to the wrong sounds folder.

    BO2 Modding Releases & Resources

  • [ZM] Gumball Watterson CIA Arms
    Astrooleanundefined Astroolean

    This just made my day... that just gave me a huge wave of nostalgia... I remember coming home from school to play bo2 zombies and watch that show while I play... this is so surreal to see this actually be a thing. You did an amazing job lmfao, and great show! Haven't seen it in years but I used to binge that show as a kid.

    BO2 Modding Releases & Resources

  • [Release] [ZM] BO2 Zombies: Town AI Premade Pack
    Astrooleanundefined Astroolean

    New update done and uploaded to GitHub... all information can be found there.

    BO2 Modding Releases & Resources

  • (Release) (ZM) Custom wallguns for all maps (full version)
    Astrooleanundefined Astroolean

    Would be nice to use this to add the jetgun, sliquifier, and blundergat to the map town maybe or is that impossible?

    BO2 Modding Releases & Resources

  • [Release] [ZM] BO2 Zombies: Town AI Premade Pack
    Astrooleanundefined Astroolean

    Scratch that, pushing another update today, for future reference ill post all updates on GitHub for now due to being unable to edit my original message. Exo Suit and a complete texture overhaul for Town coming soon maybe more go to GitHub to check it out. Much better improvement.

    BO2 Modding Releases & Resources

  • [Release] [ZM] BO2 Zombies: Town AI Premade Pack
    Astrooleanundefined Astroolean

    I will be taking a break to test things and tend to things IRL, however I will continue this project...
    For download go to the GitHub, I am unable to edit my original post.
    Everything was modified and further enhanced via ChatGPT & Gemini.

    πŸ“₯ Download

    You can download the full setup directly from here on GitHub:

    πŸ‘‰ Download on GitHub

    BO2 Modding Releases & Resources

  • [Release] [ZM] BO2 Zombies: Town AI Premade Pack
    Astrooleanundefined Astroolean

    [MASSIVE UPDATE]

    🧟 [Release] [ZM] BO2 Zombies: Town AI Premade Pack


    Hey everyone,
    I'm excited to release another major update for my custom Zombies setup β€” featuring a brand-new Exfil System, a Cold War-style Custom Round System, Alternate Ammo Types, and more!
    This update is all about adding variety, challenge, and polish to your Black Ops 2 Zombies experience.


    ✈️ New Feature: Custom Exfil System (custom_exfil.gsc)

    Escape instead of endlessly surviving.

    • πŸ”“ Unlocks on Round 11, then appears every 5 rounds
    • πŸ—³οΈ Interact with the Exfil Point (usually a radio) to start a vote
    • πŸ‘₯ All living players must vote yes within 15 seconds

    πŸ”₯ Exfil Challenge:

    • ⚠️ Zombies become faster and more aggressive
    • 🧟 Up to 40 zombies spawn during the sequence
    • πŸ’€ Map minibosses (e.g. Brutus, Mechz) will appear
    • ⏱️ You have 120 seconds to clear all enemies

    βœ… Success Conditions:

    • πŸ”“ After clearing all zombies, the Exfil Portal opens
    • πŸƒ Players must reach the portal before time runs out
    • πŸ‘‘ All inside = Exfil Successful
    • ☠️ Anyone outside = Downed + Exfil Failed

    πŸ”„ Custom Rounds System (custom_rounds.gsc)

    Mimics Cold War's round pacing and enemy scaling.

    • πŸ“Š Round progression formula inspired by Cold War Zombies
    • 🎯 Rounds 1–5 have static counts for early-game accuracy
    • βš™οΈ Later rounds scale using multipliers and increment rules
    • πŸ‘₯ Dynamic zombie count adjusts based on player count

    πŸ”« Custom Ammunition System (custom_ammo.gsc)

    Pack-a-Punch gets a full upgrade.

    • πŸ’Έ Dynamic pricing: 5000 / 2500 / 1000 depending on PaP tier
    • 🎞️ Third-person animations, ammo refill, and interaction changes
    • πŸ”„ Randomly assigns one of seven AATs when PaP’ing:

    πŸ§ͺ Alternate Ammo Types:

    Effect Color Description
    Thunder Wall Cyan Blasts zombies backward, high force
    Fireworks Green Spawns a temp auto-firing weapon
    Turned Pink Turns one zombie into an ally
    Cluster Brown Spawns multiple grenades
    Headcutter Magenta Deals head damage + AoE
    Explosive Blue Bullets deal splash damage
    Blast Furnace Red Sets groups of zombies on fire
    • ⏲️ Each AAT has individual cooldowns
    • πŸ“ˆ Effects scale by round number
    • 🧠 New HUD element shows your AAT in real-time

    πŸƒ Custom Sprint System (custom_sprint.gsc)

    Always sprint, always fast.

    • πŸƒ Unlimited sprint from game start
    • πŸ”„ Applied on every spawn automatically
    • βœ… HUD message: β€œUnlimited Sprint Activated!”

    πŸ“Έ Screenshots

    1.jpg 2.jpg 3.jpg 4.jpg 5.jpg


    πŸ”— Linked Mods & Resources

    • ZM Exfil System
    • Cold War Rounds Algorithm
    • Alternate Ammo Types (AATs)

    πŸ’¬ Final Thoughts

    I hope you all enjoy this update β€” especially the new Exfil System, which brings a completely new way to finish a match besides endless survival. I spent the entire day today setting this up. A special thanks to those linked above for making all of this possible. Long live black ops 2...

    BO2 Modding Releases & Resources

  • [Release] [ZM] BO2 Zombies: Town AI Premade Pack
    Astrooleanundefined Astroolean

    SniperCHYF25 That would be awesome, so right now i'm working on adding more new stuff to this setup, another update coming soon, but after imma start attempting the shaders again. Be warned any and all code was modified by AI so i'm unsure how clean the code is... Also I don't even compile because Plutonium does it automatically... All I do basically is give the code to AI and say please help me do this and that. I'm limited with free AI though because you cant send large amounts of code; without sending it in parts and sections. All in all everything is labeled within the code but might not be organized... My discord name is the same on here Astroolean

    BO2 Modding Releases & Resources

  • [Release] [ZM] BO2 Zombies: Town AI Premade Pack
    Astrooleanundefined Astroolean

    [MASSIVE UPDATE]

    🧟 [Release] [ZM] BO2 Zombies: Town AI Premade Pack


    βš™οΈ custom_menu.gsc Version 2 Updates

    Zombie Counter & HUD

    • Zombie Counter is now a standalone GSC script, no longer embedded in the Control Panel Menu.
    • HUD elements relocated to the top-left of the screen, showing:
      • Player Level
      • Point Scaling
      • Bullet Damage
      • Highest Round Reached
      • Instructions for the Control Panel Menu
    • HUD text updated for ranking up point scaling, bullet damage, and level.

    Player Menu Enhancements

    • AFK Mode Toggle moved into the new Player Menu.
    • Added new features:
      • FOV Slider for adjustable Field of View.
      • Zombie ESP Toggle for enhanced enemy visibility.

    Perk Shop Introduction

    • New Perk Shop allows easy purchase of:
      • Juggernog
      • Speed Cola
      • Double Tap
      • Quick Revive
      • Stamin-Up

    Weapon Options Menu

    • Added new options:
      • Pack-a-Punch upgrades.
      • Buy Max Ammo.
      • Spin the Mystery Box directly from the menu.

      Costs $2500 to spin, giving you either a regular or a Pack-a-Punched weapon.

      🎲 You have a 30% chance to receive a powerful Pack-a-Punched weapon, offering high value at a low cost!

    Banking Menu Update

    • A 10% increment is now available to all bank deposits and withdrawals.

    🎲 custom_gamble.gsc Version 2 Updates

    1. Gamble Mode Selector

    • Players can toggle between Standard and High-Roller modes.
    • Press {+speed_throw} (L2/LT) inside the gamble zone to switch modes.
    • Mode tracked by variable self.gamble_mode.

    2. Debt System with Consequences

    • Negative points trigger escalating debt levels:
      • Level 1: Movement speed reduced for 30 seconds.
      • Level 2: Weapons removed; player receives random non-Pack-a-Punch weapon.
      • Level 3: Spawns 3 β€œdebt ghost” models around the player.
      • Level 4: Player shell-shocked; screen color changed for 10 seconds.
    • Debt level tracked via self.player_debt_level, checked after every gamble.

    3. Gamble Costs & Rewards Adjusted

    • Gamble cost depends on mode:
      • 500 points in Standard mode.
      • 2500 points in High-Roller mode.
    • Different reward/loss probabilities and ranges per mode.
    • Standard mode includes small gains/losses and a small jackpot.
    • High-Roller mode has bigger stakes with chances for mega jackpot or bankruptcy.

    4. HUD & Interaction Improvements

    • Removed player_gamble_hud_setup() β€” HUD now handled externally.
    • Hint text updated to display controls for gambling and mode switching.
    • Button mapping changed from {+use} to {+gostand} for gamble action.
    • Mode switching toggles self.gamble_mode on button press.

    5. Additional Changes

    • Gambling disabled while player is in debt.
    • Uses randomintrange(min, max) for reliable random rewards.
    • HUD message positions fixed β€” no more X/Y offset issues.
    • Slightly increased trigger radius around the totem for easier interaction.

    πŸ“‹ Summary

    This update improves gameplay and UI by:

    • Separating the Zombie Counter from the Control Panel menu.
    • Relocating and enhancing HUD elements for better clarity.
    • Enhancing the Player Menu with AFK mode, FOV slider, and Zombie ESP.
    • Introducing a streamlined Perk Shop experience.
    • Adding weapon management options within the menu.
    • Updating the Banking Menu to include a 10% fee on all deposits and withdrawals.
    • Revamping custom_gamble.gsc with gambling mode switching, layered debt system, and updated reward mechanics.
    • Improving HUD prompts and interaction controls for gambling.

    These improvements bring deeper gameplay mechanics, clearer feedback, and a more polished user experience. A special thanks to SniperCHYF25 for helping make this possible with what he created.


    πŸ–ΌοΈ Images

    1.jpg

    2.jpg

    3.jpg

    4.jpg

    5.jpg

    6.jpg


    Despite my best efforts, I ran into a few issues with shaders and custom perks not being recognized correctly. Because of that, those features have been delayed and are planned for a future update. I actually ran into issues with a few other things too... However this is a working an stable version. The next massive update I plan to add even more stuff and improve what is already here. So expect the next update to be another big one.

    That said, this update is still a massive improvement overall. I’ve been working on this from 10 AM to 7 PM β€” and I’m grateful to be building something like this. Gonna grab some food, test the latest changes in-game, and get some rest. I am hoping to add a lot more stuff got a few more ideas from AI to try as well...

    BO2 Modding Releases & Resources

  • [Release] [ZM] BO2 Zombies: Town AI Premade Pack
    Astrooleanundefined Astroolean

    UPDATE: Massive update dropping tomorrow I wanna finalize things before I release it... Huge thanks to SniperCHYF25 for his creation because if it wasn't for what he made this would not be here today. Massive appreciation for your work, thank you I truly mean that. I added so much stuff and even have some other surprises. Some stuff I cant get to work, but in due time they will. Here are some images:

    1.jpg 2.jpg 3.jpg 4.jpg 5.png 6.jpg 7.jpg 8.jpg 9.jpg

    So, for right now this is what I got... Been working on making this work for the past 8 or more hours or so I think I started roughly 5pm maybe? can't remember... Imma work on it a lot more tomorrow and try to push a massive update. I'm calling this a massive update because the menu itself is like a 1000% improvement. I just gotta go to bed i'm super tired now lmfao

    BO2 Modding Releases & Resources
  • 1
  • 2
  • 3
  • 1 / 3
  • Login

  • Don't have an account? Register

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