ok thanks for that
now the table has a firm size
Code:
new len = format( buffer, 2047, "<table border=1 cellspacing=1 cellpadding=10 width=650 align=center>")
len += format( buffer[len], 2047-len, "<tr><td align=left width=450> Name <td align=center width=100> Hits <td align=right width=100> Damage" )
for (iAttacker = 1; iAttacker <= iMaxPlayer; iAttacker++)
{
if (get_user_astats(id, iAttacker, izStats, izBody, t_sWpn, MAX_WEAPON_LENGTH))
{
get_user_name(iAttacker, t_sName, 32)
len += format( buffer[len], 2047-len , "<tr><td align=left> %s <td align=center> %d <td align=right> %d", t_sName, izStats[STATS_HITS], izStats[STATS_DAMAGE] )
but is shows the name still on more lines.
When your name is "Ch3cker need help" it shows it like this:
here is a new picture of it
http://88.198.51.140/myhits2.jpg
__________________