amxmodx/plugins/cstrike/stats_logging.sma

113 lines
3.4 KiB
Plaintext
Raw Normal View History

2004-02-21 22:37:00 +03:00
/* AMX Mod X
* Stats Logging Plugin
2004-02-01 21:45:44 +03:00
*
2004-02-21 22:37:00 +03:00
* by the AMX Mod X Development Team
* originally developed by JustinHoMi
2004-02-01 21:45:44 +03:00
*
2004-02-21 22:37:00 +03:00
* This file is part of AMX Mod X.
*
*
* 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
2005-09-18 07:19:34 +04:00
* along with this program; if not, write to the Free Software Foundation,
2004-02-21 22:37:00 +03:00
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* In addition, as a special exception, the author gives permission to
* link the code of this program with the Half-Life Game Engine ("HL
2005-09-18 07:19:34 +04:00
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
2004-02-21 22:37:00 +03:00
* L.L.C ("Valve"). You must obey the GNU General Public License in all
* respects for all of the code used other than the HL Engine and MODs
* from Valve. If you modify this file, you may extend this exception
* to your version of the file, but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from your
* version.
2004-02-01 21:45:44 +03:00
*/
2004-01-31 23:56:22 +03:00
2004-03-05 22:35:38 +03:00
#include <amxmodx>
2004-10-05 11:41:14 +04:00
#include <csx>
2004-01-31 23:56:22 +03:00
new g_pingSum[33]
new g_pingCount[33]
2005-11-12 21:55:37 +03:00
new g_inGame[33]
2004-01-31 23:56:22 +03:00
2005-09-18 07:19:34 +04:00
public plugin_init()
{
register_plugin("CS Stats Logging", AMXX_VERSION_STR, "AMXX Dev Team")
2004-08-04 00:36:33 +04:00
}
2004-01-31 23:56:22 +03:00
2005-09-18 07:19:34 +04:00
public client_disconnect(id)
{
2005-11-12 21:55:37 +03:00
if (!g_inGame[id])
return
g_inGame[id] = 0
2005-09-18 07:19:34 +04:00
if (is_user_bot(id))
{
return
}
remove_task(id)
new szTeam[16], szName[32], szAuthid[32], iStats[8], iHits[8], szWeapon[24]
new iUserid = get_user_userid(id)
2006-07-18 13:20:57 +04:00
new _max = xmod_get_maxweapons()
2005-09-18 07:19:34 +04:00
get_user_team(id, szTeam, 15)
get_user_name(id, szName, 31)
get_user_authid(id, szAuthid, 31)
2006-07-18 13:20:57 +04:00
for (new i = 1 ; i < _max ; ++i)
2005-09-18 07:19:34 +04:00
{
if (get_user_wstats(id, i, iStats, iHits))
{
xmod_get_wpnname(i, szWeapon, 23)
log_message("^"%s<%d><%s><%s>^" triggered ^"weaponstats^" (weapon ^"%s^") (shots ^"%d^") (hits ^"%d^") (kills ^"%d^") (headshots ^"%d^") (tks ^"%d^") (damage ^"%d^") (deaths ^"%d^")",
szName, iUserid, szAuthid, szTeam, szWeapon, iStats[4], iStats[5], iStats[0], iStats[2], iStats[3], iStats[6], iStats[1])
log_message("^"%s<%d><%s><%s>^" triggered ^"weaponstats2^" (weapon ^"%s^") (head ^"%d^") (chest ^"%d^") (stomach ^"%d^") (leftarm ^"%d^") (rightarm ^"%d^") (leftleg ^"%d^") (rightleg ^"%d^")",
szName, iUserid, szAuthid, szTeam, szWeapon, iHits[1], iHits[2], iHits[3], iHits[4], iHits[5], iHits[6], iHits[7])
}
}
new iTime = get_user_time(id, 1)
log_message("^"%s<%d><%s><%s>^" triggered ^"time^" (time ^"%d:%02d^")", szName, iUserid, szAuthid, szTeam, (iTime / 60), (iTime % 60))
log_message("^"%s<%d><%s><%s>^" triggered ^"latency^" (ping ^"%d^")", szName, iUserid, szAuthid, szTeam, (g_pingSum[id] / (g_pingCount[id] ? g_pingCount[id] : 1)))
2004-01-31 23:56:22 +03:00
}
2005-11-12 21:55:37 +03:00
public client_connect(id)
{
g_inGame[id] = 0
}
2005-09-18 07:19:34 +04:00
public client_putinserver(id)
{
2005-11-12 21:55:37 +03:00
g_inGame[id] = 1
2005-09-18 07:19:34 +04:00
if (!is_user_bot(id))
{
g_pingSum[id] = g_pingCount[id] = 0
2005-11-12 21:55:37 +03:00
if (task_exists(id))
remove_task(id)
2005-09-18 07:19:34 +04:00
set_task(19.5, "getPing", id, "", 0, "b")
}
2004-01-31 23:56:22 +03:00
}
2005-09-18 07:19:34 +04:00
public getPing(id)
{
new iPing, iLoss
get_user_ping(id, iPing, iLoss)
g_pingSum[id] += iPing
++g_pingCount[id]
2004-09-10 09:18:57 +04:00
}