I need to make an actor wait until turn 150 to move then randomly move every 10-100 turns. I know I can use this if I was doing it every 150 turns consistently but I don't know the best way to go around this new problem.
counter++;
if (counter == 150)
{
counter = 0;
swim();
}