Hey guys, I have another problem. I'm making a callout in which there are 2 possibilities of what can happen. One is when you ring the doorbell of the house, the suspect will open up, the second is that another person will open the door. I'm using this for these possibilities: int r_talk = new Random().Next(1, 2);If r_talk is 1, the suspect spawns, if it's 2 then non-suspect spawns. I have to define the variable at the beginning of the code so it stays the same during whole callout, because if not, a thing can happen where the suspect spawns and he acts like the non-suspect. My problem is, when the r_talk is chosen to be 1 or 2, it will stay the same during the whole game session, so if I repeat the callout, the outcome will be the same, e.g. the suspect will spawn every time. So, is there a way to randomize it over and over again every time the callout is accepted? Thanks in advance