I'm trying to randomize four numbers without them being the same, or else it breaks my code. What can I do to so that they are all the same? This is my code:
Random r = new Random();
_unknown1 = r.Next(1, 8);
_unknown2 = r.Next(1, 8);
_unknown3 = r.Next(1, 8);
_unknown4 = r.Next(1, 8);