-
Notifications
You must be signed in to change notification settings - Fork 49
/
number.php
executable file
·102 lines (99 loc) · 3.16 KB
/
number.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
<?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'] * 1;
$_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='number.php?tresde=$tresder'>> Back</a>");
}
$_SESSION['tresde'] = $_GET['tresde'];
$_GET['crystals'] = abs((int) $_GET['crystals']);
$_GET['number'] = abs((int) $_GET['number']);
print "<h3>Pick a number between 1 - 3 and double your bet of crystals</h3>";
if ($_GET['crystals'])
{
if ($_GET['crystals'] > $ir['crystals'])
{
die(
"You are trying to bet more than you have.<br />
<a href='number.php?tresde=$tresder'>> Back</a>");
}
else if ($_GET['crystals'] > $maxbet)
{
die(
"You have gone over the max bet.<br />
<a href='roulette.php?tresde=$tresder'>> Back</a>");
}
else if ($_GET['number'] > 3 or $_GET['number'] < 1 or $_GET['bet'] < 0)
{
die(
"The Numbers are only 1 - 3.<br />
<a href='number.php?tresde=$tresder'>> Back</a>");
}
$slot[1] = (int) rand(1, 3);
print
"You place \${$_GET['crystals']} into the slot and pull the pole.<br />
You see the number: <b>$slot[1]</b><br />
You bet \${$_GET['crystals']} ";
if ($slot[1] == $_GET['number'])
{
$won = $_GET['crystals'] * 2;
$gain = $_GET['crystals'] * 1;
print
"and won \$$won by matching the number u bet pocketing you \$$gain extra.";
}
else
{
$won = 0;
$gain = -$_GET['crystals'];
print "and lost it.";
}
mysql_query(
"UPDATE users SET crystals=crystals+({$gain}) where userid=$userid",
$c);
$tresder = (int) (rand(100, 999));
print
"<br />
<a href='number.php?bet={$_GET['bet']}&tresde=$tresder&number={$_GET['number']}'>> Another time, same bet.</a><br />
<a href='number.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='number.php' method='get'>
Bet: \$<input type='text' name='bet' value='5' /><br />
Pick (1-3): <input type='text' name='number' value='2' /><br />
<input type='hidden' name='tresde' value='$tresder' />
<input type='submit' value='Play!!' />
</form>";
}
$h->endpage();