changed header and version info

This commit is contained in:
Felix Geyer
2004-02-01 18:45:44 +00:00
parent 9214a349a4
commit 51fe5a4822
22 changed files with 132 additions and 258 deletions

View File

@ -1,9 +1,10 @@
/* AMX Mod script. (Feb 4th, 2003)
*
* Stats Logging
* by JustinHoMi
*
*/
/* AMX Mod X script.
*
* (c) 2002-2004, JustinHoMi
* modified by BAILOPAN,Manip,PM,SniperBeamer
*
* This file is provided as is (no warranties).
*/
#include <amxmod>
#include <csstats>
@ -12,7 +13,7 @@ new g_pingSum[33]
new g_pingCount[33]
public plugin_init()
register_plugin("Stats Logging","0.9","JustinHoMi")
register_plugin("Stats Logging","0.1","JustinHoMi")
public client_disconnect(id) {
if ( is_user_bot( id ) ) return PLUGIN_CONTINUE
@ -56,4 +57,4 @@ public getPing( id ) {
get_user_ping( id , iPing, iLoss)
g_pingSum[ id ] += iPing
++g_pingCount[ id ]
}
}