-
Notifications
You must be signed in to change notification settings - Fork 49
/
slotsmachine.php
executable file
·103 lines (100 loc) · 3.1 KB
/
slotsmachine.php
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
session_start();
require "global_func.php";
if ($_SESSION['loggedin'] == 0)
{
header("Location: login.php");
exit;
}
$userid = $_SESSION['userid'];
require "header.php";
$h = new headers;
$h->startheaders();
include "mysql.php";
global $c;
$is =
mysql_query(
"SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",
$c) or die(mysql_error());
$ir = mysql_fetch_array($is);
check_level();
$fm = money_formatter($ir['money']);
$cm = money_formatter($ir['crystals'], '');
$lv = date('F j, Y, g:i a', $ir['laston']);
$h->userdata($ir, $lv, $fm, $cm);
$h->menuarea();
$tresder = (int) (rand(100, 999));
$maxbet = $ir['level'] * 250;
$_GET['tresde'] = abs((int) $_GET['tresde']);
if (($_SESSION['tresde'] == $_GET['tresde']) || $_GET['tresde'] < 100)
{
die(
"Error, you cannot refresh or go back on the slots, please use a side link to go somewhere else.<br />
<a href='slotsmachine.php?tresde=$tresder'>> Back</a>");
}
$_SESSION['tresde'] = $_GET['tresde'];
$_GET['bet'] = abs((int) $_GET['bet']);
print "<h3>Slots</h3>";
if ($_GET['bet'])
{
if ($_GET['bet'] > $ir['money'])
{
die(
"You are trying to bet more than you have.<br />
<a href='slotsmachine.php?tresde=$tresder'>> Back</a>");
}
else if ($_GET['bet'] > $maxbet)
{
die(
"You have gone over the max bet.<br />
<a href='slotsmachine.php?tresde=$tresder'>> Back</a>");
}
$slot[1] = (int) rand(0, 9);
$slot[2] = (int) rand(0, 9);
$slot[3] = (int) rand(0, 9);
print
"You place \${$_GET['bet']} into the slot and pull the pole.<br />
You see the numbers: <b>$slot[1] $slot[2] $slot[3]</b><br />
You bet \${$_GET['bet']} ";
if ($slot[1] == $slot[2] && $slot[2] == $slot[3])
{
$won = $_GET['bet'] * 26;
$gain = $_GET['bet'] * 25;
print
"and won \$$won by lining up 3 numbers pocketing you \$$gain extra.";
}
else if ($slot[1] == $slot[2] || $slot[2] == $slot[3]
|| $slot[1] == $slot[3])
{
$won = $_GET['bet'] * 3;
$gain = $_GET['bet'] * 2;
print
"and won \$$won by lining up 2 numbers pocketing you \$$gain extra.";
}
else
{
$won = 0;
$gain = -$_GET['bet'];
print "and lost it.";
}
mysql_query(
"UPDATE users SET money=money+({$gain}) where userid=$userid", $c);
$tresder = (int) (rand(100, 999));
print
"<br />
<a href='slotsmachine.php?bet={$_GET['bet']}&tresde=$tresder'>> Another time, same bet.</a><br />
<a href='slotsmachine.php?tresde=$tresder'>> I'll continue, but I'm changing my bet.</a><br />
<a href='explore.php'>> Enough's enough, I'm off.</a>";
}
else
{
print
"Ready to try your luck? Play today!<br />
The maximum bet for your level is \$$maxbet.<br />
<form action='slotsmachine.php' method='get'>
Bet: \$<input type='text' name='bet' value='5' /><br />
<input type='hidden' name='tresde' value='$tresder' />
<input type='submit' value='Play!!' />
</form>";
}
$h->endpage();