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

Plutonium

  1. Home
  2. BO1 Modding Support & Discussion
  3. 3 hit for bo1?

3 hit for bo1?

Scheduled Pinned Locked Moved BO1 Modding Support & Discussion
11 Posts 6 Posters 1.1k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • TeYoqundefined Offline
    TeYoqundefined Offline
    TeYoq
    wrote on last edited by
    #1

    soo I'd like to know if there is any mod to have more health, like in bo3, can someone help me?

    Pistakillaundefined 1 Reply Last reply
    0
    • Pistakillaundefined Offline
      Pistakillaundefined Offline
      Pistakilla
      replied to TeYoq on last edited by
      #2

      TeYoq You can change the health of the player or change the damage for the zombies. I suggest changing zombie damage as it's more consistent than just adding hp to the player.

      infected_dmg()
      {
      	while(1)
      	{
      		infected = GetAiArray( "axis" );
      		
      		for( i=0;i<infected.size;i++ )
      		{
      			if( is_true( infected[i].meleeDamage ) )
      			{
      				infected[i].meleeDamage = 45; //This value is amount each infected will inflict damage to a player
      			}
      		}
      		wait 0.05;
      	}
      }
      
      TeYoqundefined 1 Reply Last reply
      2
      • TeYoqundefined Offline
        TeYoqundefined Offline
        TeYoq
        replied to Pistakilla on last edited by
        #3

        Pistakilla yoo admin, excuse me for my ignorance but what should I do with that, I have NO idea, srry lol

        1 Reply Last reply
        0
        • Pistakillaundefined Offline
          Pistakillaundefined Offline
          Pistakilla
          wrote on last edited by Pistakilla
          #4

          TeYoq create a .gsc file (just make a blank.txt file and rename the .txt to a .gsc) then copy this into the .gsc file you made

          #include common_scripts\utility; 
          
          init(){ thread infected_dmg(); }
          
          infected_dmg()
          {
          	while(1)
          	{
          		infected = GetAiArray( "axis" );
          		
          		for( i=0;i<infected.size;i++ )
          		{
          			if( is_true( infected[i].meleeDamage ) )
          			{
          				infected[i].meleeDamage = 45; //This value is amount each infected will inflict damage to a player
          			}
          		}
          		wait 0.05;
          	}
          }
          
          

          Then save it and copy that .gsc file you made and paste it to %localappdata%\plutonium\storage\t5\scripts\sp

          Bebrageundefined 1 Reply Last reply
          2
          • Bebrageundefined Offline
            Bebrageundefined Offline
            Bebrage
            replied to Pistakilla on last edited by
            #5

            Pistakilla This script doesn't seem to work on my end. Placing it into zom doesn't load the script, placing it into sp even after loading the game first crashes my game, and making a folder like zombie_theatre and loading Kino Der Toten with the script in folder also doesn't work. Is there any version of this that I can put in \maps? Or can I get information on what specific .gsc script I can place it in (like _zombiemode_perks for example).

            hindercanrunundefined Pistakillaundefined 2 Replies Last reply
            0
            • Pistakillaundefined Offline
              Pistakillaundefined Offline
              Pistakilla
              replied to Bebrage on last edited by
              #6

              Bebrage Aight fixed it. Copy the code above I edited it and you can just place it in the sp folder instead of zom folder.

              1 Reply Last reply
              0
              • isfixeeundefined Offline
                isfixeeundefined Offline
                isfixee
                wrote on last edited by
                #7
                This post is deleted!
                1 Reply Last reply
                0
                • isfixeeundefined Offline
                  isfixeeundefined Offline
                  isfixee
                  wrote on last edited by
                  #8

                  thx that help a lot

                  1 Reply Last reply
                  0
                  • Whale_Nundefined Offline
                    Whale_Nundefined Offline
                    Whale_N
                    wrote last edited by
                    #9

                    isfixee Pistakilla I know this is old but I can't seem to get this working. I created a text doc and put .gsc in the name which I thought was good and put it in my sp folder but I can't seem to get it working.

                    1 Reply Last reply
                    1
                    • spc.1undefined Offline
                      spc.1undefined Offline
                      spc.1
                      wrote last edited by
                      #10

                      note pad++.

                      Whale_Nundefined 1 Reply Last reply
                      1
                      • Whale_Nundefined Offline
                        Whale_Nundefined Offline
                        Whale_N
                        replied to spc.1 last edited by
                        #11

                        @FomroMadia That worked. Thanks!

                        1 Reply Last reply
                        0

                        • Login

                        • Don't have an account? Register

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