Estoy diseñando una rueda de la fortuna parecida a la del siguiente enlace:
Quiero manipular el juego para que las probabilidades de que caiga en ciertas opciones sea menor a las que realmente tienen premios buenos.
No sé que fórmula matemática utilizar o que código me pueda ayudar a realizar dicha acción. El código no lo pego porque en realidad el juego es muy básico y sencillo y hay muchos tutoriales de él en Internet. De antemano gracias a todos por su valioso conocimiento.
I am designing a wheel of fortune similar to the last video.
I want to manipulate the game so that the chances of landing on certain options are lower than those that really have good prizes.
I don't know what mathematical formula to use or what code can help me to carry out said action. I don't paste the code because in reality the game is very basic and simple and there are many tutorials about it on the Internet. Thank you all in advance for your valuable knowledge.
you can define the chances for each "spot"
you can use the sum of the chances to determine the range of a random value. there are 9 values with a sum of 12
long val = random (0, sum);
you can then scan the array, determining the accumulated sum and the range of random values that match the entry