diff --git a/plugins/cstrike/statsx.sma b/plugins/cstrike/statsx.sma index 8279bb1a..7bf91ccf 100755 --- a/plugins/cstrike/statsx.sma +++ b/plugins/cstrike/statsx.sma @@ -740,6 +740,8 @@ format_top15(sBuffer[MAX_BUFFER_LENGTH + 1]) for (new i = 0; i < iMax && MAX_BUFFER_LENGTH - iLen > 0; i++) { get_stats(i, izStats, izBody, t_sName, MAX_NAME_LENGTH) + replace_all(t_sName, MAX_NAME_LENGTH, "<", "[") + replace_all(t_sName, MAX_NAME_LENGTH, ">", "]") iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "%2d %-22.22s %6d %6d %6d %6d %4d %3.0f%% %3.0f%%^n", i + 1, t_sName, izStats[STATS_KILLS], izStats[STATS_DEATHS], izStats[STATS_HITS], izStats[STATS_SHOTS], izStats[STATS_HS], effec(izStats), accuracy(izStats)) } diff --git a/plugins/dod/stats.sma b/plugins/dod/stats.sma index 61ebdc9a..ef761a64 100755 --- a/plugins/dod/stats.sma +++ b/plugins/dod/stats.sma @@ -1001,6 +1001,8 @@ getTop15_steam(id){ imax = itmax for(new a = 0; a < imax; ++a){ get_stats(a,stats,body,name,31); + replace_all(name, 31, "<", "[") + replace_all(name, 31, ">", "]") pos += format(g_Buffer[pos],2047-pos,"%d.%s%d%d%d%d%d%d%d^n", a+1,name,stats[0],stats[1],stats[7],stats[3],stats[5],stats[4],stats[2]) } diff --git a/plugins/tfc/stats.sma b/plugins/tfc/stats.sma index b4229fe5..4a50e8b7 100755 --- a/plugins/tfc/stats.sma +++ b/plugins/tfc/stats.sma @@ -272,6 +272,8 @@ getTop15(){ if (imax > 15) imax = 15 for(new a = 0; a < imax; ++a){ get_stats(a,stats,body,name,31) + replace_all(name, 31, "<", "[") + replace_all(name, 31, ">", "]") pos += format(g_Buffer[pos],2047-pos,"%2d. %-28.27s %d/%d %d %d/%d/%d^n",a+1,name,stats[0],stats[1],stats[3],stats[5],stats[4],stats[2]) } } diff --git a/plugins/ts/stats.sma b/plugins/ts/stats.sma index cc3de926..38c2170a 100755 --- a/plugins/ts/stats.sma +++ b/plugins/ts/stats.sma @@ -215,6 +215,8 @@ getTop15(){ if (imax > 15) imax = 15 for(new a = 0; a < imax; ++a){ get_stats(a,stats,body,name,31) + replace_all(name, 31, "<", "[") + replace_all(name, 31, ">", "]") pos += format(g_Buffer[pos],2047-pos,"%2d. %-28.27s %d/%d %d %d/%d/%d^n",a+1,name,stats[0],stats[1],stats[3],stats[5],stats[4],stats[2]) } }