-
Notifications
You must be signed in to change notification settings - Fork 50
/
halloffame.php
executable file
·334 lines (324 loc) · 9.11 KB
/
halloffame.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<?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>Hall Of Fame</h3>
<table width=75%> <tr> <td><a href='halloffame.php?action=level'>LEVEL</a></td> <td><a href='halloffame.php?action=money'>MONEY</a></td> <td><a href='halloffame.php?action=crystals'>CRYSTALS</a></td> <td><a href='halloffame.php?action=total'>TOTAL STATS</a></td> </tr>
<tr> <td><a href='halloffame.php?action=strength'>STRENGTH</a></td> <td><a href='halloffame.php?action=agility'>AGILITY</a></td> <td><a href='halloffame.php?action=guard'>GUARD</a></td> <td><a href='halloffame.php?action=labour'>LABOUR</a></td> <td><a href='halloffame.php?action=iq'>IQ</a></td> </tr> </table>";
switch ($_GET['action'])
{
case "level":
hof_level();
break;
case "money":
hof_money();
break;
case "crystals":
hof_crystals();
break;
case "total":
hof_total();
break;
case "strength":
hof_strength();
break;
case "agility":
hof_agility();
break;
case "guard":
hof_guard();
break;
case "labour":
hof_labour();
break;
case "iq":
hof_iq();
break;
}
function hof_level()
{
global $ir, $c, $userid;
print
"Showing the 20 users with the highest levels<br />
<table width=75%><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Level</th> </tr>";
$q =
mysql_query(
"SELECT u.* FROM users u WHERE u.user_level != 0 ORDER BY level DESC,userid ASC LIMIT 20",
$c);
$p = 0;
while ($r = mysql_fetch_array($q))
{
$p++;
if ($r['userid'] == $userid)
{
$t = "<b>";
$et = "</b>";
}
else
{
$t = "";
$et = "";
}
print
"<tr> <td>$t$p$et</td> <td>$t{$r['username']} [{$r['userid']}]$et</td> <td>$t{$r['level']}$et</td> </tr>";
}
print "</table>";
}
function hof_money()
{
global $ir, $c, $userid;
print
"Showing the 20 users with the highest amount of money<br />
<table width=75%><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Money</th> </tr>";
$q =
mysql_query(
"SELECT u.* FROM users u WHERE u.user_level != 0 ORDER BY money DESC,userid ASC LIMIT 20",
$c);
$p = 0;
while ($r = mysql_fetch_array($q))
{
$p++;
if ($r['userid'] == $userid)
{
$t = "<b>";
$et = "</b>";
}
else
{
$t = "";
$et = "";
}
print
"<tr> <td>$t$p$et</td> <td>$t{$r['username']} [{$r['userid']}]$et</td> <td>$t\$"
. money_formatter($r['money'], '') . "$et</td> </tr>";
}
print "</table>";
}
function hof_crystals()
{
global $ir, $c, $userid;
print
"Showing the 20 users with the highest amount of crystals<br />
<table width=75%><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Crystals</th> </tr>";
$q =
mysql_query(
"SELECT u.* FROM users u WHERE u.user_level != 0 ORDER BY crystals DESC,userid ASC LIMIT 20",
$c);
$p = 0;
while ($r = mysql_fetch_array($q))
{
$p++;
if ($r['userid'] == $userid)
{
$t = "<b>";
$et = "</b>";
}
else
{
$t = "";
$et = "";
}
print
"<tr> <td>$t$p$et</td> <td>$t{$r['username']} [{$r['userid']}]$et</td> <td>$t"
. money_formatter($r['crystals'], '')
. "$et</td> </tr>";
}
print "</table>";
}
function hof_total()
{
global $ir, $c, $userid;
print
"Showing the 20 users with the highest total stats<br />
<table width=75%><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>";
$q =
mysql_query(
"SELECT u.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.user_level != 0 ORDER BY (us.strength+us.agility+us.guard+us.labour+us.IQ) DESC,u.userid ASC LIMIT 20",
$c);
$p = 0;
while ($r = mysql_fetch_array($q))
{
$p++;
if ($r['userid'] == $ir['userid'])
{
$t = "<b>";
$et = "</b>";
}
else
{
$t = "";
$et = "";
}
print
"<tr> <td>$t$p$et</td> <td>$t{$r['username']} [{$r['userid']}]$et</td> </tr>";
}
print "</table>";
}
function hof_strength()
{
global $ir, $c, $userid;
print
"Showing the 20 users with the highest strength<br />
<table width=75%><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>";
$q =
mysql_query(
"SELECT u.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.user_level != 0 ORDER BY us.strength DESC,u.userid ASC LIMIT 20",
$c);
$p = 0;
while ($r = mysql_fetch_array($q))
{
$p++;
if ($r['userid'] == $ir['userid'])
{
$t = "<b>";
$et = "</b>";
}
else
{
$t = "";
$et = "";
}
print
"<tr> <td>$t$p$et</td> <td>$t{$r['username']} [{$r['userid']}]$et</td> </tr>";
}
print "</table>";
}
function hof_agility()
{
global $ir, $c, $userid;
print
"Showing the 20 users with the highest agility<br />
<table width=75%><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>";
$q =
mysql_query(
"SELECT u.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.user_level != 0 ORDER BY us.agility DESC,u.userid ASC LIMIT 20",
$c);
$p = 0;
while ($r = mysql_fetch_array($q))
{
$p++;
if ($r['userid'] == $ir['userid'])
{
$t = "<b>";
$et = "</b>";
}
else
{
$t = "";
$et = "";
}
print
"<tr> <td>$t$p$et</td> <td>$t{$r['username']} [{$r['userid']}]$et</td> </tr>";
}
print "</table>";
}
function hof_guard()
{
global $ir, $c, $userid;
print
"Showing the 20 users with the highest guard<br />
<table width=75%><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>";
$q =
mysql_query(
"SELECT u.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.user_level != 0 ORDER BY us.guard DESC,u.userid ASC LIMIT 20",
$c);
$p = 0;
while ($r = mysql_fetch_array($q))
{
$p++;
if ($r['userid'] == $ir['userid'])
{
$t = "<b>";
$et = "</b>";
}
else
{
$t = "";
$et = "";
}
print
"<tr> <td>$t$p$et</td> <td>$t{$r['username']} [{$r['userid']}]$et</td> </tr>";
}
print "</table>";
}
function hof_labour()
{
global $ir, $c, $userid;
print
"Showing the 20 users with the highest labour<br />
<table width=75%><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>";
$q =
mysql_query(
"SELECT u.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.user_level != 0 ORDER BY us.labour DESC,u.userid ASC LIMIT 20",
$c);
$p = 0;
while ($r = mysql_fetch_array($q))
{
$p++;
if ($r['userid'] == $ir['userid'])
{
$t = "<b>";
$et = "</b>";
}
else
{
$t = "";
$et = "";
}
print
"<tr> <td>$t$p$et</td> <td>$t{$r['username']} [{$r['userid']}]$et</td> </tr>";
}
print "</table>";
}
function hof_iq()
{
global $ir, $c, $userid;
print
"Showing the 20 users with the highest IQ<br />
<table width=75%><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>";
$q =
mysql_query(
"SELECT u.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.user_level != 0 ORDER BY us.IQ DESC,u.userid ASC LIMIT 20",
$c);
$p = 0;
while ($r = mysql_fetch_array($q))
{
$p++;
if ($r['userid'] == $ir['userid'])
{
$t = "<b>";
$et = "</b>";
}
else
{
$t = "";
$et = "";
}
print
"<tr> <td>$t$p$et</td> <td>$t{$r['username']} [{$r['userid']}]$et</td> </tr>";
}
print "</table>";
}
$h->endpage();