69 lines
2.4 KiB
Plaintext
Executable File
69 lines
2.4 KiB
Plaintext
Executable File
// vim: set ts=4 sw=4 tw=99 noet:
|
|
//
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
// Copyright (C) 2003 JustinHoMi.
|
|
//
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
//
|
|
// TS Stats Logging Plugin
|
|
//
|
|
|
|
#include <amxmodx>
|
|
#include <tsx>
|
|
#include <tsfun>
|
|
|
|
new g_pingSum[MAX_PLAYERS]
|
|
new g_pingCount[MAX_PLAYERS]
|
|
|
|
public plugin_init()
|
|
register_plugin("Stats Logging",AMXX_VERSION_STR,"AMXX Dev Team")
|
|
|
|
public client_disconnect(id) {
|
|
if ( is_user_bot( id ) ) return PLUGIN_CONTINUE
|
|
remove_task( id )
|
|
new szTeam[16],szName[MAX_NAME_LENGTH],szAuthid[32], iStats[8], iHits[8], szWeapon[16]
|
|
new iUserid = get_user_userid( id )
|
|
|
|
// team
|
|
get_user_info(id,"team", szTeam, 15 )
|
|
|
|
get_user_name(id, szName ,31 )
|
|
get_user_authid(id, szAuthid , 31 )
|
|
for(new i = 1 ; i < TSMAX_WEAPONS ; ++i ) {
|
|
if( get_user_wstats( id , i ,iStats , iHits ) ) {
|
|
xmod_get_wpnlogname( i , szWeapon , 15 )
|
|
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 ) ) )
|
|
return PLUGIN_CONTINUE
|
|
}
|
|
|
|
public client_putinserver(id) {
|
|
if ( !is_user_bot( id ) ){
|
|
g_pingSum[ id ] = g_pingCount[ id ] = 0
|
|
set_task( 19.5 , "getPing" , id , "" , 0 , "b" )
|
|
}
|
|
}
|
|
|
|
public getPing( id ) {
|
|
new iPing, iLoss
|
|
get_user_ping( id , iPing, iLoss)
|
|
g_pingSum[ id ] += iPing
|
|
++g_pingCount[ id ]
|
|
}
|