You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.MD
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,20 +6,20 @@ A simple slots game where the GUI is drawn in a console window.
6
6
7
7
### THEORETICAL RETURN TO PLAYER
8
8
9
-
The game has a theoretical RTP of 82%. Game outcome is determined by random numbers drawn in the range 0(inclusive) and 80000(exclusive). The games "outcome type" is then calculated from the random number based on the table below:
9
+
The game has a theoretical RTP of 82%. Game outcome is determined by random numbers drawn in the range 0(inclusive) and 100000(exclusive). The games "outcome type" is then calculated from the random number based on the table below:
10
10
11
11
| Random Min | Random Max | OUTCOME TYPE | COUNT | Stake | Prize | Total Stake | Total Prize |
| 328 | 3607 | 3 OF A KIND | 3280 | 20 | 100 | 65600 | 328000 |
15
-
| 3608 |20007| 2 OF A KIND |16500| 20 | 50 |328000| 820000|
16
-
|20008|79999| LOSE |59992| 20 | 0 |1199840| 0 |
15
+
| 3608 |26567| 2 OF A KIND |22960| 20 | 50 |459200|1148000|
16
+
|26568|99999| LOSE |73432| 20 | 0 |1468640| 0 |
17
17
18
-
Given that all 80k outcomes should be equally likely, if a player was to play 80k spins, theoretically they'd hit all 80k possibilities giving a total prize, total stake and theoretical RTP of:
18
+
Given that all 100k outcomes should be equally likely, if a player was to play 100k spins, theoretically they'd hit all 100k possibilities giving a total prize, total stake and theoretical RTP of:
19
19
20
-
| TOT TOT STAKE | TOT TOT PRIZE | THORETICAL RTP |
You can test the actual RTP over 100k cycles by adding a command line argument representing a relative file path to a location to output CSV results to for the 100k cycles.
0 commit comments