Skip to content
  • 0 Unread 0
  • 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
12 Posts 7 Posters 6.8k Views 3 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.
  • TeYoq TeYoq

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

    Pistakilla Offline
    Pistakilla Offline
    Pistakilla
    wrote 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;
    	}
    }
    
    TeYoq 1 Reply Last reply
    2
    • Pistakilla Pistakilla

      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;
      	}
      }
      
      TeYoq Offline
      TeYoq Offline
      TeYoq
      wrote 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
      • Pistakilla Offline
        Pistakilla 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

        Bebrage ITheBlackfishI 2 Replies Last reply
        3
        • Pistakilla Pistakilla

          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

          Bebrage Offline
          Bebrage Offline
          Bebrage
          wrote 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).

          hindercanrun Pistakilla 2 Replies Last reply
          0
          • Bebrage Bebrage

            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).

            Pistakilla Offline
            Pistakilla Offline
            Pistakilla
            wrote 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
            • isfixee Offline
              isfixee Offline
              isfixee
              wrote on last edited by
              #7
              This post is deleted!
              1 Reply Last reply
              0
              • isfixee Offline
                isfixee Offline
                isfixee
                wrote on last edited by
                #8

                thx that help a lot

                1 Reply Last reply
                0
                • Whale_N Offline
                  Whale_N Offline
                  Whale_N
                  wrote on 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.1 Offline
                    spc.1 Offline
                    spc.1
                    wrote on last edited by
                    #10

                    note pad++.

                    Whale_N 1 Reply Last reply
                    1
                    • spc.1 spc.1

                      note pad++.

                      Whale_N Offline
                      Whale_N Offline
                      Whale_N
                      wrote on last edited by
                      #11

                      @FomroMadia That worked. Thanks!

                      1 Reply Last reply
                      0
                      • Pistakilla Pistakilla

                        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

                        ITheBlackfishI Offline
                        ITheBlackfishI Offline
                        ITheBlackfishI
                        wrote last edited by
                        #12

                        Pistakilla got this running on my s26 ultra thanks so much for this

                        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
                        • Donate