| ▲ | eig 4 hours ago | ||||||||||||||||||||||
The game stores and allows you to see the RNG seed that controls the run's events and layout. The developers want players to be able to share seeds that produce interesting runs. That requirement is what made this problem difficult for the devs to solve. | |||||||||||||||||||||||
| ▲ | margalabargala 3 hours ago | parent [-] | ||||||||||||||||||||||
This shouldn't actually be difficult to solve though. The issue is that knowing the offset of seeds helps predict outputs. Instead of calling RNG(seed+hash(string)) 10x, make one RNG(seed) and call that 10 times to get random seeds for your 10 rngs. Now you have perfect determinism and no correlation. | |||||||||||||||||||||||
| |||||||||||||||||||||||