THX for help
Forum
CS2D Scripts zombie hpzombie hp
2 replies 1
THX for help
2. Set his max health (parse setmaxhealth) to 200
done
Question : How to make zombies have more health ?
Answer : Depends on what kind of zombies.
Option 1 : If they are NPC zombies then you will have to change health value into your desired one.
Option 2 : If you mean zombies in Zombies! Game mode then you can write a little script
1
2
3
4
5
6
2
3
4
5
6
addhook("spawn","zombiehp") function zombiehp(id) 	if player(id,"team") == 1 then -- means that player is terrorist/zombie 		parse("setmaxhealth "..id.." 200") 	end end
Option 3 : There are also few commands for zombies :
The commands are called
mp_zombiedmg
mp_zombierecover
mp_zombiespeedmod
Having effects of Reducing Damage Taken,Health Regeneration and Zombie Speed respectively.
1