-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcyberbank.php
executable file
·145 lines (138 loc) · 4.22 KB
/
cyberbank.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?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();
print "<h3>Cyber Bank</h3>";
if ($ir['cybermoney'] > -1)
{
switch ($_GET['action'])
{
case "deposit":
deposit();
break;
case "withdraw":
withdraw();
break;
default:
index();
break;
}
}
else
{
if (isset($_GET['buy']))
{
if ($ir['money'] > 9999999)
{
print
"Congratulations, you bought a bank account for \$10,000,000!<br />
<a href='cyberbank.php'>Start using my account</a>";
mysql_query(
"UPDATE users SET money=money-10000000,cybermoney=0 WHERE userid=$userid",
$c);
}
else
{
print
"You do not have enough money to open an account.
<a href='explore.php'>Back to town...</a>";
}
}
else
{
print
"Open a bank account today, just \$10,000,000!<br />
<a href='cyberbank.php?buy'>> Yes, sign me up!</a>";
}
}
function index()
{
global $ir, $c, $userid, $h;
print
"\n<b>You currently have \${$ir['cybermoney']} in the bank.</b><br />
At the end of each day, your bank balance will go up by 7%.<br />
<table width='75%' border='2'> <tr> <td width='50%'><b>Deposit Money</b><br />
It will cost you 15% of the money you deposit, rounded up. The maximum fee is \$1,500,000.<form action='cyberbank.php?action=deposit' method='post'>
Amount: <input type='text' name='deposit' value='{$ir['money']}' /><br />
<input type='submit' value='Deposit' /></form></td> <td>
<b>Withdraw Money</b><br />
It will cost you 7.5% of the money you withdraw, rounded up. The maximum fee is \$750,000.<form action='cyberbank.php?action=withdraw' method='post'>
Amount: <input type='text' name='withdraw' value='{$ir['cybermoney']}' /><br />
<input type='submit' value='Withdraw' /></form></td> </tr> </table>";
}
function deposit()
{
global $ir, $c, $userid, $h;
$_POST['deposit'] = abs((int) $_POST['deposit']);
if ($_POST['deposit'] > $ir['money'])
{
print "You do not have enough money to deposit this amount.";
}
else
{
$fee = ceil($_POST['deposit'] * 15 / 100);
if ($fee > 1500000)
{
$fee = 1500000;
}
$gain = $_POST['deposit'] - $fee;
$ir['cybermoney'] += $gain;
mysql_query(
"UPDATE users SET cybermoney=cybermoney+$gain, money=money-{$_POST['deposit']} where userid=$userid",
$c);
print
"You hand over \${$_POST['deposit']} to be deposited, <br />
after the fee is taken (\$$fee), \$$gain is added to your account. <br />
<b>You now have \${$ir['cybermoney']} in the Cyber Bank.</b><br />
<a href='cyberbank.php'>> Back</a>";
}
}
function withdraw()
{
global $ir, $c, $userid, $h;
$_POST['withdraw'] = abs((int) $_POST['withdraw']);
if ($_POST['withdraw'] > $ir['cybermoney'])
{
print "You do not have enough banked money to withdraw this amount.";
}
else
{
$fee = ceil($_POST['withdraw'] * 75 / 1000);
if ($fee > 750000)
{
$fee = 750000;
}
$gain = $_POST['withdraw'] - $fee;
$ir['cybermoney'] -= $gain;
mysql_query(
"UPDATE users SET cybermoney=cybermoney-$gain, money=money+$gain where userid=$userid",
$c);
print
"You ask to withdraw $gain, <br />
the teller hands it over after she takes the bank fees. <br />
<b>You now have \${$ir['cybermoney']} in the Cyber Bank.</b><br />
<a href='cyberbank.php'>> Back</a>";
}
}
$h->endpage();