Extra Stats plugins

Extra stats plugins designed to collect some info during the match via Timer(), special GameRules or via additional Report Plugin for example and then dump it for each player. Has just one vital function - GimmeStats called every time GameLogger writes individual stats for a player.

function GimmeStats(PlayerReplicationInfo PRIs, GameReplicationInfo GRI, string TDstyle);
TDstyle is a style of cell that has only bottom border visible creating a separator between the lines.

Note that the strings will be pasted after the default player stats, in the table and your code should either be in one, double sized table cell:
<tr>
  <td width="100%" colspan=2>
    Your Strings
  </td>
</tr>
or it should just continue the table like the following example. Note the first two raws of the table - they're used to make stats more readable. Also note that " " is the first raw - it used to make cell take full width but remain empty. All raws that contain stats except the last one should use the style passed to function as TDstyle. It 'underlines' the cell making the table more readable.
<tr>
  <td width="100%" colspan=2>&nbsp;</td>
</tr>
<tr>
  <td width="100%" colspan=2>
    Your section name
  </td>
</tr>
<tr>
  <td class=TDstyle>Stats param1</td><td>Stats param1 value</td>
</tr>
<tr>
  <td class=TDstyle>Stats param2</td><td>Stats param2 value</td>
</tr>
<tr>
  <td>Stats param3</td><td>Stats param3 value</td>
</tr>
etc. Note also that that table has a fixed width of 800 pixels so if you'll choose the first variant, fon't exceed this.