Winter's Howl Buff
-
actually no then it would take longer to kill him with normal guns
-
retard69 an easier way to make ur weapons do more damage is limit the zombies health to a certain number, but that’s probably unreliable
-
hindercanrun i'd prefer the guns doing more damage, makes it feel more badass dude
-
This post is deleted!
-
retard69 yeah you're much better off decreasing zombie health as it will achieve the same effect. You have to individually edit the stats of every single weapon you want and pack it into a mod.
You could probably write a script to for it, but I have absolutely 0 knowledge on coding lol. However, I was able to achieve this by tweaking this equation in _zombiemode.gsc (raw/maps) and copying the entire file over to %localappdata% plutonium/storage/t5/maps
ai_calculate_health( round_number ) { level.zombie_health = level.zombie_vars["zombie_health_start"]; for ( i=2; i<=round_number; i++ ) { // After round 10, get exponentially harder if( i >= 10 ) { level.zombie_health += Int( level.zombie_health * level.zombie_vars["zombie_health_increase_multiplier"] ); } else { level.zombie_health = Int( level.zombie_health + level.zombie_vars["zombie_health_increase"] ); } } }
As for weapon stats, yeah it can be done and I'm currently working on a balance overhaul mod that does just that, but trust me man it is immensely tedious. However, if you'd like to edit weapon stats anyways, drop me a reply and I'll list out the full process
-
@JakePatcher could I add this to my bo1 mod?
-
hindercanrun of course
-
Okay thanks
-
-
why not just make it infinite damage or at least strong enough to bring me to round 50-100 one shoting?
-
Bdog129w you know you can modify the script yourself... right?
if you are looking to make it deal inf damage, you would set it to self_health + 1 in the weapon damage or something like that
-
Do my friends need to install this to play with me?