-
Notifications
You must be signed in to change notification settings - Fork 3
/
stats.php
executable file
·144 lines (139 loc) · 4.28 KB
/
stats.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
<?php
/*
MCCodes FREE
stats.php Rev 1.1.0
Copyright (C) 2005-2012 Dabomstew
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
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();
// Basic Stats (all users)
$q =
mysql_query(
"SELECT COUNT(`userid`) AS `c_users`,
SUM(`money`) AS `s_money`,
SUM(`crystals`) AS `s_crystals`
FROM `users`", $c);
$mem_info = mysql_fetch_assoc($q);
$membs = $mem_info['c_users'];
$total = $mem_info['s_money'];
$avg = (int) ($total / ($membs > 1 ? $membs : 1));
$totalc = $mem_info['s_crystals'];
$avgc = (int) ($totalc / ($membs > 1 ? $membs : 1));
mysql_free_result($q);
$q =
mysql_query(
"SELECT COUNT(`userid`) AS `c_users`,
SUM(`bankmoney`) AS `s_bank`
FROM `users`
WHERE `bankmoney` > -1", $c);
$bank_info = mysql_fetch_assoc($q);
$banks = $bank_info['c_users'];
$totalb = $bank_info['s_bank'];
$avgb = (int) ($totalb / ($banks > 0 ? $banks : 1));
mysql_free_result($q);
$q =
mysql_query(
"SELECT COUNT(`userid`)
FROM `users`
WHERE `gender` = 'Male'", $c);
$male = mysql_result($q, 0, 0);
mysql_free_result($q);
$q =
mysql_query(
"SELECT COUNT(`userid`)
FROM `users`
WHERE `gender` = 'Female'", $c);
$fem = mysql_result($q, 0, 0);
mysql_free_result($q);
$q = mysql_query("SELECT SUM(`inv_qty`)
FROM `inventory`", $c);
$totali =(int) mysql_result($q, 0, 0);
mysql_free_result($q);
$q = mysql_query("SELECT COUNT(`mail_id`)
FROM `mail`", $c);
$mail = mysql_result($q, 0, 0);
mysql_free_result($q);
$q = mysql_query("SELECT COUNT(`evID`)
FROM `events`", $c);
$events = mysql_result($q, 0, 0);
mysql_free_result($q);
echo "<h3>Country Statistics</h3>
You step into the Statistics Department and login to the service. You see some stats that interest you.<br />
<table width='75%' cellspacing='1' class='table'>
<tr>
<th>Users</th>
<th>Money and Crystals</th>
</tr>
<tr>
<td>
There are currently $membs {$set['game_name']} players,
$male males and $fem females.
</td>
<td>
Amount of cash in circulation: " . money_formatter($total)
. ". <br />
The average player has: " . money_formatter($avg)
. ". <br />
Amount of cash in banks: " . money_formatter($totalb)
. ". <br />
Amount of players with bank accounts: $banks<br />
The average player has in their bank accnt: "
. money_formatter($avgb)
. ". <br />
Amount of crystals in circulation: "
. money_formatter($totalc, "")
. ". <br />
The average player has: " . money_formatter($avgc, "")
. " crystals.
</td>
</tr>
<tr>
<th>Mails/Events</th>
<th>Items</th>
</tr>
<tr>
<td>
" . money_formatter($mail, "") . " mails and "
. money_formatter($events, "")
. " events have been sent.
</td>
<td>
There are currently " . money_formatter($totali, "")
. " items in circulation.
</td>
</tr>
</table>";
$h->endpage();