I want to modify something in a gamemode I made. It is a PVE where each 2 rounds, a random bot is added. For exemple, if at round 1 there is reaper, at round 3 a random hero will be added so it might be Reaper and Widowmaker. Round 5, another random hero is added.
So far i have my initial condition that every round, it will look the following IF condition
If round ==1
add reaper in the array
else if round == 3
add random hero in the array
I have this condition going from round 1 and doing all heroes in the game. The only problem is that it takes a lot of place and I was wondering if it was possible to say every time the round number is even or odd. So it looks the IF condition every time the round number is either 2,4,6… etc.
If I can clarify something, please let me know.
