-
Notifications
You must be signed in to change notification settings - Fork 8
/
bank.php
137 lines (129 loc) · 4.09 KB
/
bank.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
<?php
declare(strict_types=1);
/**
* MCCodes v2 by Dabomstew & ColdBlooded
*
* Repository: https://github.com/davemacaulay/mccodesv2
* License: MIT License
*/
global $db, $ir, $userid, $h;
require_once('globals.php');
echo '<h3>Bank</h3>';
$bank_cost = 50000;
$bank_maxfee = 3000;
$bank_feepercent = 15;
if ($ir['bankmoney'] > -1)
{
if (!isset($_GET['action']))
{
$_GET['action'] = '';
}
switch ($_GET['action'])
{
case 'deposit':
deposit();
break;
case 'withdraw':
withdraw();
break;
default:
index();
break;
}
} elseif (isset($_GET['buy'])) {
if ($ir['money'] >= $bank_cost) {
echo 'Congratulations, you bought a bank account for '
. money_formatter($bank_cost)
. "!<br />
<a href='bank.php'>Start using my account</a>";
$db->query(
"UPDATE `users` SET `money` = `money` - {$bank_cost}, `bankmoney` = 0 WHERE `userid` = $userid");
} else {
echo "You do not have enough money to open an account.
<a href='explore.php'>Back to town...</a>";
}
} else {
echo 'Open a bank account today, just ' . money_formatter($bank_cost)
. "!<br />
<a href='bank.php?buy'>> Yes, sign me up!</a>";
}
/**
* @return void
*/
function index(): void
{
global $ir, $bank_maxfee, $bank_feepercent;
echo "\n<b>You currently have" . money_formatter($ir['bankmoney'])
. " in the bank.</b><br />
At the end of each day, your bank balance will go up by 2%.<br />
<table width='75%' cellspacing=1 class='table'> <tr> <td width='50%'><b>Deposit Money</b><br />
It will cost you {$bank_feepercent}% of the money you deposit, rounded up. The maximum fee is "
. money_formatter($bank_maxfee)
. ".<form action='bank.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 />
There is no fee on withdrawals.<form action='bank.php?action=withdraw' method='post'>
Amount: <input type='text' name='withdraw' value='{$ir['bankmoney']}' /><br />
<input type='submit' value='Withdraw' /></form></td> </tr> </table>";
}
/**
* @return void
*/
function deposit(): void
{
global $db, $ir, $userid, $bank_maxfee, $bank_feepercent;
$_POST['deposit'] = abs((int) $_POST['deposit']);
if ($_POST['deposit'] > $ir['money'])
{
echo 'You do not have enough money to deposit this amount.';
}
else
{
$fee = ceil($_POST['deposit'] * $bank_feepercent / 100);
if ($fee > $bank_maxfee)
{
$fee = $bank_maxfee;
}
$gain = $_POST['deposit'] - $fee;
$ir['bankmoney'] += $gain;
$db->query(
"UPDATE `users` SET `bankmoney` = `bankmoney` + $gain,
`money` = `money` - {$_POST['deposit']} WHERE `userid` = $userid");
echo 'You hand over ' . money_formatter($_POST['deposit'])
. ' to be deposited, <br />
after the fee is taken (' . money_formatter($fee) . ', '
. money_formatter($gain)
. ' is added to your account. <br />
<b>You now have ' . money_formatter($ir['bankmoney'])
. " in the bank.</b><br />
<a href='bank.php'>> Back</a>";
}
}
/**
* @return void
*/
function withdraw(): void
{
global $db, $ir, $userid;
$_POST['withdraw'] = abs((int) $_POST['withdraw']);
if ($_POST['withdraw'] > $ir['bankmoney'])
{
echo 'You do not have enough banked money to withdraw this amount.';
}
else
{
$gain = $_POST['withdraw'];
$ir['bankmoney'] -= $gain;
$db->query(
"UPDATE `users` SET `bankmoney` = `bankmoney` - $gain,
`money` = `money` + $gain WHERE `userid` = $userid");
echo 'You ask to withdraw ' . money_formatter($gain)
. ', <br />
the banking lady grudgingly hands it over. <br />
<b>You now have ' . money_formatter($ir['bankmoney'])
. " in the bank.</b><br />
<a href='bank.php'>> Back</a>";
}
}
$h->endpage();