Skip to content
  • 0 Unread 0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Collapse

Plutonium

  1. Home
  2. BO1 Modding Releases & Resources
  3. BO3's 3-Hit System & increased health for Juggernog on BO1!

BO3's 3-Hit System & increased health for Juggernog on BO1!

Scheduled Pinned Locked Moved BO1 Modding Releases & Resources
3 Posts 2 Posters 1.3k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Coronavirus-19undefined Offline
    Coronavirus-19undefined Offline
    Coronavirus-19
    wrote on last edited by Coronavirus-19
    #1

    This script overrides the health function and increases it to 150 HP then 300 HP when Juggernog is obtained. Also properly resets when downed and revived!

    Installation

    Plutonium/storage/t5/scripts/sp

    BO3 3-Hit System GSC Script

    Raw Code

    #include maps\_utility;
    
    init()
    {
        level thread on_player_connect();
    }
    
    on_player_connect()
    {
        for (;;)
        {
            level waittill("connected", player);
            player thread health_controller();
        }
    }
    
    health_controller()
    {
        self endon("disconnect");
    
        for (;;)
        {
            wait 0.05;
    
            // Determine max HP
            if (self hasperk("specialty_armorvest"))
            {
                self.maxhealth = 300;
            }
            else
            {
                self.maxhealth = 150;
            }
    
            // Force regen override
            if (self.health < self.maxhealth && self.health > 0)
            {
                self.health += 2;
    
                if (self.health > self.maxhealth)
                {
                    self.health = self.maxhealth;
                }
            }
        }
    }
    
    
    1 Reply Last reply
    1
    • Coronavirus-19undefined Coronavirus-19 referenced this topic on
    • hzp13undefined Offline
      hzp13undefined Offline
      hzp13
      wrote on last edited by
      #2

      This is great for us to experience bo1 zombies with some bo3 features. But it has a problem: shouldn't we get a red screen after the second hit? I mean it serves the purpose to warn you that you are in your last hit.

      Coronavirus-19undefined 1 Reply Last reply
      0
      • hzp13undefined hzp13

        This is great for us to experience bo1 zombies with some bo3 features. But it has a problem: shouldn't we get a red screen after the second hit? I mean it serves the purpose to warn you that you are in your last hit.

        Coronavirus-19undefined Offline
        Coronavirus-19undefined Offline
        Coronavirus-19
        wrote on last edited by
        #3

        hzp13 I realized that this version functions to regen the players health faster! I'm working on a v2!

        1 Reply Last reply
        0

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better 💗

        Register Login
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

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