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;
}
kikail:
have discord ?
Azizz:
have discord ?