Stats_logging: Replace len hardcoded contents by charsmax
This commit is contained in:
parent
4e343f65bd
commit
c2ee729380
|
@ -29,13 +29,13 @@ public client_disconnect(id) {
|
|||
new iUserid = get_user_userid( id )
|
||||
|
||||
// team
|
||||
get_user_info(id,"team", szTeam, 15 )
|
||||
get_user_info(id,"team", szTeam, charsmax(szTeam) )
|
||||
|
||||
get_user_name(id, szName ,31 )
|
||||
get_user_authid(id, szAuthid , 31 )
|
||||
get_user_name(id, szName , charsmax(szName) )
|
||||
get_user_authid(id, szAuthid , charsmax(szAuthid) )
|
||||
for(new i = 1 ; i < TSMAX_WEAPONS ; ++i ) {
|
||||
if( get_user_wstats( id , i ,iStats , iHits ) ) {
|
||||
xmod_get_wpnlogname( i , szWeapon , 15 )
|
||||
xmod_get_wpnlogname( i , szWeapon , charsmax(szWeapon) )
|
||||
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])
|
||||
|
|
Loading…
Reference in New Issue
Block a user