Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.07 KB

693.md

File metadata and controls

22 lines (18 loc) · 1.07 KB

changing zombies' health

Game Modding | Call of Duty: Black Ops 3 | Scripting


ModmeBot:

Thread By: CalvinLarson
I am making a map that is supposed to be difficult, I want to increase the zombies health overall, how would I go about doing that.


ModmeBot:

Reply By: ByKris
{% highlight php %}{% raw %} function lots_o_points( points ) { level flag::wait_till( "all_players_connected" ); players = getplayers(); for( i=0;i<players.size;i++ )="" {="" players[i].score="points;" }="" zombie_utility::set_zombie_var(="" "zombie_health_start",="" 150,="" false);=""></players.size;i++> {% endraw %}{% endhighlight %}


{% highlight php %}{% raw %} level thread lots_o_points( 500 ); {% endraw %}{% endhighlight %}