Game Modding | Call of Duty: Black Ops 3 | General Discussion
jfuvv:
need help making sprinters from round one
Magicman:
sorry for the late response...I realize you've either given up or figured it out by now, but if not :
Put this in main function:
level thread new_zombie_speed();
and put this of the bottom of mapname.gsc
function new_zombie_speed()
{
level flag::wait_till( "initial_blackscreen_passed" );
zombie_utility::set_zombie_var( "zombie_move_speed_multiplier", 75, false ); // Multiply by the round number to give the base speed value. 0-40 = walk, 41-70 = run, 71+ = sprint
zombie_utility::set_zombie_var( "zombie_move_speed_multiplier_easy", 75, false ); // Multiply by the round number to give the base speed value. 0-40 = walk, 41-70 = run, 71+ = sprint
level.zombie_move_speed = level.round_number * level.zombie_vars["zombie_move_speed_multiplier"];
}
note I DID NOT CREATE THIS SCRIPT, I unfortunately don't know who did, but I did not so I take no credit
Harry Bo21:
put a wait or thats a developer error