捕魚機的原理是基於隨機數生成算法,稱為亂數產生器(Random Number Generator,簡稱RNG)。捕魚機遊戲中的所有結果都是通過RNG生成的,保證每次遊戲的結果是完全隨機的,沒有預設或操控的可能。
A random number generator (RNG) is an algorithm that produces random numbers. In video games, these random numbers are used to determine random events, like your chance at landing a critical hit or picking up a rare item. Random number generation, or RNG, is a defining factor in many modern games. (原文出處 )
Random number generation, or RNG, is a defining factor in many modern games. They’re the reason why you always meet unique Pokemon, why items in Mario Kart are different each time you pick them up, and why you randomly find super cool treasure (or not) in Diablo. Some procedurally-generated games, like The Binding of Issac or Minecraft, wouldn’t even be possible without RNG. (原文出處 )