Search found 2 matches
- Mon Apr 02, 2018 10:05 pm
- Forum: General Discussion
- Topic: Ways to remove RNG
- Replies: 4
- Views: 3268
Aha. I think you can use Common::RandomSource's setSeed method function to reset the PRNG seed to the same value each time. This would make the behaviour deterministic: https://github.com/scummvm/scummvm/blob/master/common/random.h#L49 If you remove the line I indicated in scumm.cpp L1204 and then ...
- Sat Mar 24, 2018 4:27 pm
- Forum: General Discussion
- Topic: Ways to remove RNG
- Replies: 4
- Views: 3268
Ways to remove RNG
I was wondering if there would be ways to remove randomly generated events or assure that I would encounter them from the game Freddi Fish (3). For example, that the Golden Pipes would always spawn at the same three places. Maybe this is possible via the console, I wouldn't know. Anyways thank you f...