I'm not sure what you mean.
A game typically doesn't generate true random numbers (a series of numbers that cannot be predicted), but a series of pseudorandom numbers that if you try hard enough you can determine where in the sequence you are, and predict what the next number will be. Every time you generate a random value, the computer simply will serve up the next number in sequence. Where it starts in the sequence is the seed, and when you get a new random number, the next value given is the new seed value.
To generate a new outcome, you must first make the game roll a different random number, thus advancing the seed to the next number, then have it try to roll for what you want to change. How you do this is your challenge though, not mine. I don't save scum.