Modme Forums

zombie speed and player health

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


Azizz:

Hi everyone i want to know how can i create a mod that changes the zombies speed and player health for every zombies map im new to scripting


kikail:

put that where u want in ur gsc
level.zombie_move_speed = 70;
Change the 70 for the speed or that if u wanna randomize :
level.zombie_move_speed = RandomIntRange(40,70);

for health change player.maxhealth , or player.health
example:
foreach(player in getplayers())
{
player.health += 50;
}


Azizz:

put that where u want in ur gsc
level.zombie_move_speed = 70;
Change the 70 for the speed or that if u wanna randomize :
level.zombie_move_speed = RandomIntRange(40,70);

for health change player.maxhealth , or player.health
example:
foreach(player in getplayers())
{
player.health += 50;
}

for some reason my mods won't work can you please help me to create the mod i spent all day trying to do it


kikail:

have discord ?


Azizz:

have discord ?

yeah its
Azozz1423#5393