-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimpleSlotsRules.html
More file actions
50 lines (49 loc) · 961 Bytes
/
Copy pathsimpleSlotsRules.html
File metadata and controls
50 lines (49 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Simple Slots Rules </title>
<link rel="stylesheet" type="text/css" href="devinDefault.css" title="style" />
</head>
<body>
<h2> Simple Slots Rules </h2>
<hr />
<br />
<p>Wagers: 1 credits evaluates only the middle row, 2 credits evaluates three horizontal rows, and 3 credits evaluates the three rows and along the two diagonals.</p>
<p>Payouts:
<table class="center">
<tr>
<th>Combo</th>
<th>Payout</th>
</tr>
<tr>
<td>3x s</td>
<td>300</td>
</tr>
<tr>
<td>3x k</td>
<td>100</td>
</tr>
<tr>
<td>3x m</td>
<td>15</td>
</tr>
<tr>
<td>3x r</td>
<td>15</td>
</tr>
<tr>
<td>3x p</td>
<td>15</td>
</tr>
<tr>
<td>3x c</td>
<td>8</td>
</tr>
</table>
</p>
<p><a href="/simpleSlots.html">Click to go to the game</a></p>
<br />
<footer> Copyright 2020 Devin Lo </footer>
</body>
</html>