07-22-2022, 05:53 AM
MrBean35000vr Wrote:For the curious out there, the mystery of how Mario Kart Wii determines what cc the next race will be has been solved!
The game takes into account the lowest VR of the room, the average VR of the room, and a random number between 0 and 100 (this random number is how the percentages work).
It uses two different systems, I haven't worked out what causes the game to pick a specific one yet, but the friend room I tested in used system 2. The font colours make it easier to see what the "if it is/isn't" refers to, since it gets a little messy and indentation isn't quite good enough.
System 1:
- Check if lowest VR is less than 5300.
--Â IF IT IS:
--Â Check if lowest VR is less than 4800.
---Â IF IT IS:
---Â Always 100cc.
---Â IF IT ISN'T:
---Â Check if average VR is less than 5200.
----Â Â IF IT IS:
----Â Â Always 100cc.
----Â Â IF IT ISN'T:
----Â Â 60% 100cc. 40% 150cc.
--Â IF IT ISN'T:
---Â Check if average VR is less than 5700.
---Â IF IT IS:
---Â 60% 100cc. 40% 150cc.
---Â IF IT ISN'T:
---Â 20% 100cc. 50% 150cc. 30% Mirror.
System 2:
- Check if lowest VR is less than 5000.
--Â IF IT IS:
--Â Check if lowest VR is less than 4500.
---Â IF IT IS:
---Â Always 100cc.
---Â IF IT ISN'T:
---Â Check if average VR is less than 5200.
----Â Â IF IT IS:
----Â Â Always 100cc.
----Â Â IF IT ISN'T:
----Â Â 60% 100cc. 40% 150cc.
--Â IF IT ISN'T:
---Â Check if average VR is less than 5700.
---Â IF IT IS:
---Â 60% 100cc. 40% 150cc.
---Â IF IT ISN'T:
---Â 20% 100cc. 50% 150cc. 30% Mirror.
And that's how the game works it out.