|
Get a idea what "random" means in computer programs.
Theirs no "100%" random, its allways based about some calculations taking some "unknown" and "known" informations into account.
If you just use a random() on your computer, it might simply take your System Time, a files "hwnd" number (which is very lickly to be different with each start), maybe divide it to some other value and you use your value as a "random" generated one.
Atlantica is lickly to use simply the "Server time" , connect it to some other unknown values (even if its the total number of players, or your will value) whatever, its going to be "random" this way, ofcourse its not 100% random like you would call a coin flip (even if a coin flip is not "100%" random, if you would know all needed variables).
So in the end its "random", no matter what you do, unless you get the specific algorightmn the random code uses (believe it or not, some Online Poker algorightmn are solved, so peops keep winning, and so the Online Casino must make a new one that is harder to solve).
For your "failure" series or "winning series", just take a coin flip.
With a 50/50 chance its lickly that you will win 3 times in a row, and have 3 failures in a row, but you can easy go win/lose/win/lose , its all about a simpel 50/50 chance, and theirs nothing thats easier to create than a simpel 50/50 chance for computer programs.
So in the end you are just lucky, as long as you dont have a real "calculation" behind your actions.
if you want to find out "real" data, make something around 100 enhances and be sure that the "time" between them is allways the same, like 1 second, write down your results.
Make another 100 enhances, with a delay of like 2 seconds between each, than see your results.
If they have visible differences you might have a "sign" that the randomness is connected to server time etc. so you might be able to track a specific series that will give a sure "success".
But in the end its very different to compare "random" functions with Black Jack, as in Black Jack you dont really have much randomness if you count cards, you "know" what is still in the deck before you make your high bids, so you "know" you have a clear 9 out of 10 chance to win, which translates to 90% (and 90% is worth putting a lot of money in the bet), you might still lose with a 10% chance, but thats the game.
In the end, dont let you ever fool with your "human" sence. If you let someone flip a coin and win 10 times, you still have a 50/50 chance for your 11th flip, it wont change in chances with your flips before that (even if human sence might tell you it should be the opposite side "somehow").
|