In my game I'm going to use random values to pick the reward the player gets from a chest. The problem is that you can quick save and quick load and that means they can keep reloading to re-randomize until they get what they want. Is there some way that I could get the current seed value of my random object and possibly return to that same point when they load so that they couldn't abuse the randomization?
|
Not sure on getting the seed, but you could save the value you give to the |
|||||||||||||
|
|
This is not possible. Instead, you can serialize the Note, however, that saving the random seed allows your players to predict the future, which is very useful if you allow saving in battle. Also note that users can still save, open the chest, load, perform an action that generates a random number, then get a different item from the chest. |
|||||||||||||
|
|
I'd probably just use this as per MSDN: http://msdn.microsoft.com/en-us/library/ctssatww.aspx
where seed is some value I've loaded from storage. |
|||||||||||||||
|
|
You can calculate the random reward as a hash function of:
This method has the advantage that a given chest will always yield the same reward in a given game, no matter how many times you save and replay, even if chests are opened in different orders, or other 'random' events are triggered in different orders. Also each chest's reward is independent of other chests' rewards, so long as the chest's property used in the hash is independent. In the following example
If many of your chests are likely to be aligned in sace, you may want to choose a different property, or use additional dimensions, by XORing with the y and/or z coordinates too. |
|||
|
|