I've been trying this for quite a while and nothing really seems to work, so how do i make it when zombies hit a trigger their speed goes down or a number controlling speed goes down? Thanks again for the 2 millionth time.
call both of these methods on a zombie object, also dont call the first script on the same zombie multiple times without calling the second method. if you do the zombie will permanently be a walker
You can change there speed in your "_zombiemode_spawner.gsc". Copy it from your root/raw/maps folder to your maps folder in your mod ( mods/yourmapname/maps ).
Open it and search for: set_run_speed() { rand = randomintrange( level.zombie_move_speed, level.zombie_move_speed + 35 );
Actually, this was more helpful than i thought. I knew it was in that area, but now i know exactly where to change it, all i need now is how. (I'm sorry if my English doesn't translate well)
You can change there speed in your "_zombiemode_spawner.gsc". Copy it from your root/raw/maps folder to your maps folder in your mod ( mods/yourmapname/maps ).
Then you can change there speed in this function. You can use "walk", "run" and "sprint". Hope it helps you.
you cant just change the values in the set_run_speed method in _zombiemode_spawner.gsc. that sets the speed for the zombies when they first spawn and then is never used again in the spawner code. you need to do something like what i said to do and call a function that will set them to walkers and save their last speed and then call a method that will set it back to their original speed
Last Edit: February 29, 2016, 08:33:12 pm by buttkicker845
you cant just change the values in the set_run_speed method in _zombiemode_spawner.gsc. that sets the speed for the zombies when they first spawn and then is never used again in the spawner code. you need to do something like what i said to do and call a function that will set them to walkers and save their last speed and then call a method that will set it back to their original speed
I thougth he would like something easy. I don't say that this is the best way to do this but it's a way to change this.