Guys everyone is aware of the fact that the results are randomly generated with a set limit right? Like if it is between 0-10k (was it 1 and 10k or 0 and 10k? I forgot that) the result can't be 20k, because the max is 10k, which means anything between those numbers are just luck. You could roll your first ever free faucet and get that 200 dollars, or you could roll 100k times and not get it, it is all random and based on luck.
It is not about finding the correct way, there is no correct way, you will always end up losing a ton of money if you keep focusing making that kind of decision, you will not be making that kind of profit in the long run at all, it is just pure random and if you try to consider if x method is better or y method is better you will always be upset with the results because they will all lead to the same result as long as you keep gambling; pure random.
In fact the results aren't fully randomly generated because you can use whatever client seed you want to generate the final number. And it can be the same word or the same "lucky" number at each roll if you want. The random generated part is the house seed, it is chosen before each roll by the house and its SHA-256 hashcode is provided to you. You need to click on the string "THIS GAME IS PROVABLY FAIR!" to see it and to enter your personal seed if you want it.
How are rolls calculated?
Two strings are created :
STRING1 = "[NONCE]:[SERVER SEED]:[NONCE]"
STRING2 = "[NONCE]:[CLIENT SEED]:[NONCE]"
Then HMAC-SHA512 is used to hash STRING1 with STRING2 as the secret key, giving us a 128 character hex string.
The first 8 characters of the hex string are taken and converted to a decimal.
This decimal is then divided by 429496.7295 and rounded off to the nearest whole number.
This whole number is used as your roll, with the maximum possible value being 10,000.