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

Plutonium

AndreTOQU3undefined

AndreTOQU3

@AndreTOQU3
About
Posts
31
Topics
12
Shares
0
Groups
0
Followers
13
Following
20

Posts

Recent Best Controversial

  • Where can i find irony.dll and compiler.exe???
    AndreTOQU3undefined AndreTOQU3

    Nothing here {96A8E03C-03C7-480F-95E3-E56031B912FC}.png

    BO2 Modding Support & Discussion

  • [ZM-BO2-SCRIPT] Dynamic Hardcore Health System
    AndreTOQU3undefined AndreTOQU3

    This script replaces the default BO2 health with a dynamic perk-based health system.

    Base Health: 60

    Max Health Cap: 250

    Health is recalculated every 0.5 seconds based on perks the player owns.

    Health Bonuses:

    Juggernog / Armor Vest: +70 HP

    Quick Revive: +60 HP

    Tombstone: +60 HP

    The script automatically updates the player's max health, clamps it to 250, and adjusts current health if needed.

    Script:

    #include maps\mp\zombies\_zm_utility;
    #include common_scripts\utility;
    #include maps\mp\_utility;
    
    main()
    {
        level thread onPlayerConnect();
    }
    
    onPlayerConnect()
    {
        for(;;)
        {
            level waittill("connected", player);
            player thread player_health_system();
        }
    }
    
    player_health_system()
    {
        self endon("disconnect");
    
        const BASE_HEALTH = 60;
        const MAX_HEALTH_CAP = 250;
    
        self.maxhealth = BASE_HEALTH;
        self.health = self.maxhealth;
    
        for (;;)
        {
            wait 0.5;
    
            health = BASE_HEALTH;
    
            
            if ( self HasPerk( "specialty_juggernaut_zombies" ) 
            ||   self HasPerk( "specialty_armorvest" ) )
            {
                health += 70;
            }
    
           
            if ( self HasPerk( "specialty_quickrevive_zombies" ) 
            ||   self HasPerk( "specialty_quickrevive" ) )
            {
                health += 60;
            }
    
            
            if ( self.tombstone_legit && self HasPerk( "specialty_scavenger" ) )
            {
                health += 60;
            }
    
            
            if (health > MAX_HEALTH_CAP)
                health = MAX_HEALTH_CAP;
    
           
            if (health != self.maxhealth)
            {
                self.maxhealth = health;
    
                if (self.health > self.maxhealth)
                    self.health = self.maxhealth;
            }
        }
    }
    
    
    BO2 Modding Releases & Resources

  • [BO2 Release] Ultimate perks 1.0 [GSC Script]
    AndreTOQU3undefined AndreTOQU3

    Perk Functions Explained

    This script adds custom abilities to four base BO2 Zombies perks.
    Here is what each perk function does:

    1. Speed Cola – Power-Up Magnet + Hidden Perks

    When the player has Speed Cola (specialty_fastreload), the script grants two extra hidden perks:

    • Fast Weapon Switch(specialty_fastweaponswitch)
    • Fast Grenade Toss (specialty_fasttoss)

    Additionally, the player can pull power-ups toward themselves by pressing the melee button.

    How it works:

    • Every time the player presses melee, the script checks for nearby power-ups.
    • Any power-up within 1500 units moves toward the player over 0.3 seconds.
    • There's a 1-second cooldown between pulls.
    1. PhD Flopper – Automatic Grenade Regeneration

    When the player has PhD Flopper (specialty_flakjacket), they receive:

    • A guaranteed frag grenade loadout
    • Automatic regeneration of grenades over time

    How it works:

    • The script keeps track of the lethal grenade type the player has.
    • Every 30 seconds, if the player has less than 4 grenades, they gain +1 grenade.
    • Works with both frag and semtex (sticky).
    1. Quick Revive – Double Jump / Multi-Jump

    When the player has Quick Revive (specialty_quickrevive), they gain the ability to double jump.

    How it works:

    • The script listens for the jump button press.

    • The player has 2 extra jumps stored.

    • Each jump adds upward velocity:

      self SetVelocity(self GetVelocity() + (0,0,300));
      
    • The jump charges reset automatically every 1.8 seconds.

    This creates smooth, BO3-style multi-jump movement.

    1. Double Tap – Cashback (Bonus Points System)

    After the player has had Double Tap active for a few seconds, they enable the Cash Back effect.

    How it works:

    • The script monitors the player’s score in real time.
    • Whenever the player earns points, they get 50% extra points on top.
    • Example: earning 100 points gives +50 bonus points.
    • Only works while the player has Double Tap (specialty_rof).

    :

    #include maps\mp\_utility;
    #include maps\mp\zombies\_zm_utility;
    #include common_scripts\utility;
    #include maps\mp\gametypes_zm\_hud_util;
    #include maps\mp\gametypes_zm\_hud_message;
    #include maps\mp\gametypes_zm\_zm_powerups;
    #include maps\mp\zombies\_zm_weapons;
    
    init()
    {
        level thread onPlayerConnect();
        level thread monitorPoints();
    }
    
    onPlayerConnect()
    {
        for (;;)
        {
            level waittill("connected", player);
            player thread onPlayerSpawned();
        }
    }
    
    onPlayerSpawned()
    {
        self endon("disconnect");
        level endon("game_ended");
    
        for (;;)
        {
            self waittill("spawned_player");
            wait 2;
            
            self thread speedcola();
            self thread phdflopper();
            self thread quickrevive();
            self thread doubletap();
        }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    // -----------------------------
    // 1. SPEED COLA - Magnetic Powerup
    // -----------------------------
    
    speedcola()
    {
        self endon("disconnect");
        self.lastPullTime = 0;
    
        for (;;)
        {
            
            if (self HasPerk("specialty_fastreload"))
            {
                if (!(self HasPerk("specialty_fastweaponswitch")))
                {
                    self SetPerk("specialty_fastweaponswitch");
                    self notify("perk_acquired", "specialty_fastweaponswitch");
                }
    
                if (!(self HasPerk("specialty_fasttoss")))
                {
                    self SetPerk("specialty_fasttoss");
                    self notify("perk_acquired", "specialty_fasttoss");
                }
            }
            else
            {
                if (self HasPerk("specialty_fastweaponswitch"))
                    self UnsetPerk("specialty_fastweaponswitch");
    
                if (self HasPerk("specialty_fasttoss"))
                    self UnsetPerk("specialty_fasttoss");
            }
    
            
            if (getTime() - self.lastPullTime > 1000)
            {
                if (self meleeButtonPressed())
                {
                    if (!self HasPerk("specialty_fastreload"))
                    {
                        wait 0.3;
                        continue;
                    }
    
                    hasPulled = false;
    
                    foreach (powerup in level.active_powerups)
                    {
                        if (!isdefined(powerup)) continue;
    
                        
                        if (distance(self.origin, powerup.origin) <= 1500)
                        {
                            powerup moveto(self.origin, 0.3);
                            hasPulled = true;
                        }
                    }
    
                    if (hasPulled)
                    {
                        self.lastPullTime = getTime();
                    }
                }
            }
    
            wait 0.05;
        }
    }
    
    
    
    
    
    
    
    
    // -----------------------------
    // 2. PHD FLOPPER - Regen de Granadas
    // -----------------------------
    
    phdflopper()
    {
    self endon("disconnect");
    
    
    self takeweapon("frag_grenade_zm");
    self takeweapon("sticky_grenade_zm");
    
    self giveweapon("frag_grenade_zm");
    self set_player_lethal_grenade("frag_grenade_zm");
    self setweaponammoclip("frag_grenade_zm", 4);
    
    if (!isdefined(self.lethal_loop_started))
    {
    
        self.lethal_loop_started = true;
        self thread lethal_grenade_loop();
    }
    }
    
    
    
    lethal_grenade_loop()
    {
    self endon("disconnect");
    
    
    for (;;)
    {
    wait(1);
    
    
    if (!self hasperk("specialty_flakjacket"))
    continue;
    
    
    if (self hasweapon("sticky_grenade_zm"))
    self.lethal_type = "sticky_grenade_zm";
    else if (self hasweapon("frag_grenade_zm"))
    self.lethal_type = "frag_grenade_zm";
    else
    continue;
    
    
    wait(30);
    
    
    if (self hasweapon(self.lethal_type))
    {
    ammo = self getweaponammoclip(self.lethal_type);
    if (ammo < 4)
    {
    self setweaponammoclip(self.lethal_type, ammo + 1);
    }
    }
    }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    // -----------------------------
    // 3. QUICK REVIVE - Multiple jumps
    // -----------------------------
    
    quickrevive()
    {
        self endon("disconnect");
    
        self notifyOnPlayerCommand("jump_button_pressed", "+gostand");
    
        self.jumps_left = 2;
    
        self thread reset_pulo_timer();
    
        for(;;)
        {
            self waittill("jump_button_pressed");
    
            if(self HasPerk("specialty_quickrevive"))
            {
                if(self.jumps_left > 0)
                {
                    self SetVelocity(self GetVelocity() + (0, 0, 300));
                    self.jumps_left--;
                }
            }
        }
    }
    
    reset_pulo_timer()
    {
        self endon("disconnect");
    
        for(;;)
        {
            wait 1.8; // time to reset
            self.jumps_left = 2;
        }
    }
    
    
    
    
    
    
    
    
    
    
    // -----------------------------
    // 4. DOUBLE TAP - Cash Back
    // -----------------------------
    
    doubletap()
    {
        {
        self endon("disconnect");
    
        
        wait 7.5;
    
        self.hasHalfDouble = true;
    }
        
    }
    
    
    monitorPoints()
    {
        for(;;)
        {
            foreach(player in level.players)
            {
                if (!isDefined(player.old_score))
                    player.old_score = player.score;
    
                if (isDefined(player.hasHalfDouble) && player.hasHalfDouble && player HasPerk("specialty_rof"))
                {
                    diff = player.score - player.old_score;
    
                    if (diff > 0)
                    {
                        bonus = int(diff * 0.5);
                        player.score += bonus;
                    }
                }
    
                player.old_score = player.score;
            }
    
            wait 0.2;
        }
    }
    
    
    BO2 Modding Releases & Resources

  • [Release] [ZM] TechnoOps Collection
    AndreTOQU3undefined AndreTOQU3

    techboy04gaming Hello guy, I really like your mod and I wanted to ask you to make a change for the next update. So, I'd like to ask you to make the health bar optional, allowing you to choose whether it's on or off before entering a match.

    BO2 Modding Releases & Resources

  • Puedo ser baneado por esto?
    AndreTOQU3undefined AndreTOQU3

    ian_xzx no, just hack

    Temas De Español

  • [MP & ZM] Return to Alpha
    AndreTOQU3undefined AndreTOQU3

    Just waiting for this to be cooked >;)

    BO2 Modding Support & Discussion bo2 hindercanrun modding return-to-alpha rta alpha

  • 🟠 Call Of Duty: Black Ops II 💿 | T6 ⌨🖱 | Re-Texturized 🎨 🟠
    AndreTOQU3undefined AndreTOQU3

    BotWrk download dont work

    BO2 Modding Releases & Resources

  • [Release] [ZM] TechnoOps Collection
    AndreTOQU3undefined AndreTOQU3

    techboy04gaming please create TechnoOps Collection + CW mod 🔥

    BO2 Modding Releases & Resources

  • PRECISO DE AJUDA URGENTE NO PLUTONIUM
    AndreTOQU3undefined AndreTOQU3

    G10V4NN111 quando o meu ficava assim eu baixava uns driver que consertava

    Temas De Español erros crash

  • [ZM-BO2 Script help!!!] Change perk machines Price!!
    AndreTOQU3undefined AndreTOQU3

    GhostRider0125 Thanks bro!!!

    BO2 Modding Support & Discussion

  • [ZM-BO2 Script help!!!] Change perk machines Price!!
    AndreTOQU3undefined AndreTOQU3

    Hi guys, I need help. I need a GSC script that changes the price of perks. I tried to create it but couldn't. If anyone knows anything, please help me.

    BO2 Modding Support & Discussion

  • PRECISO DE AJUDA URGENTE NO PLUTONIUM
    AndreTOQU3undefined AndreTOQU3

    nevoeiro_vicioso Atualiza os drivers

    Temas De Español erros crash

  • Motivo de baneo permanente.
    AndreTOQU3undefined AndreTOQU3

    Viciuus algum moderador ficou puto quando tu matou ele e te baniu, se não usou hack só pode ter sido isso.

    BO2 Client Support

  • [Release] [ZM] TechnoOps Collection
    AndreTOQU3undefined AndreTOQU3

    thanks, it working now.

    BO2 Modding Releases & Resources
  • 1 / 1
  • Login

  • Don't have an account? Register

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