|
Re: WOTLK affliction raiding, how-to guide
Random Number Generation.
A function used by the game which essentially determines whether or not you get a crit or not. An example of how it might work is:
You have an 18% crit chance. The RNG generates a random number between 1-100, and if its between 1-18 you get a crit, if its not you don't.
RNG is never truly random though, but usually its good enough to provide a good emulation of true randomness.
|