Game Modding | Call of Duty: Black Ops 3 | Scripting
Pepergogo:
Hi I was wondering if anyone know if it's possible to end this "'for' cycle" after certain time without doing all the instructions?
This is because, sometime the Boss bugs and basically end the game is impossible, so I want to end the Boss fight by doing it or waiting certain time, this just in case the Boss fight bugs.
This is basically the Boss Fight code:
Spiki:
in the start of
add
so its like this
then whenever you want to stop this function call
from anywhere. (so after a wait or whenever you want to stop).
also i have no idea how
goes on infinitely since its a not an infinite loop. if level.brutuses increases everytime a brutus spawns then you got a problem. too lazy to check nates code
Pepergogo:
No, but ingame, the level.brutuses doesn't increases everytime a Brutus spawn. I'll just put a number, say 20, and it spawn 20 of them but wait certain time beetween them with the "level.brutus_in_between_spawn_time" option. But in some cases, the count of the 20 Brutus (for example), doesn't increase after kill one of them, causing the Boss fight can't end it and getting trap in that zone the rest of the game
Harry Bo21:
for(i=0;i<level.brutuses;i++)
for(i=0;i<level.brutuses.size;i++)
Pepergogo:
in the start of
add
so its like this
then whenever you want to stop this function call
from anywhere. (so after a wait or whenever you want to stop).
also i have no idea how
goes on infinitely since its a not an infinite loop. if level.brutuses increases everytime a brutus spawns then you got a problem. too lazy to check nates code
I test it but couldn't make it work, the fight is still the same But still thanks 😌
Pepergogo:
for(i=0;i<level.brutuses;i++)
for(i=0;i<level.brutuses.size;i++)
I test it but the Brutus didn't spawn But still thanks 😌