I believe people will be more assured if the nonce are in order instead of a random sequence, as it'll help them track their game session.
It’s not only about tracking the game session. A nounce that gets incremented each round ensures that the casino can’t manipulate the game results.
The server seed is generated randomly so what’s the need for a second randomly generated number?
Besides, how can we verify that this nounce is really generated in a completely random way?
Is the nounce revealed before the game starts?
It's not revealed beforehand, only the hash that I (haven't verified) believe is provided and this is combined with their "server seed". The server seed changes every round as well I think, it should anyway.
This secret number changes every round I believe along with their secret string.
This "random number" is then added to the "client seed"(which is set at the start and can't be changed) each round.
It's a random number from 0-10000 every round and then they combine this with the resulting number from your client-seed that is combined with their hash. I don't think it's generated in any PF manner either but they are free to correct me.
Correct me if I'm wrong though.