LuaStats.wiki
changeset 1924 3d7e8679cea4
parent 1923 6755e22daa77
child 1925 41e2a96de084
equal deleted inserted replaced
1923:6755e22daa77 1924:3d7e8679cea4
    17 || *`TStatInfoType`* || *Meaning of `statMessage`* || *Team parameter used?* ||
    17 || *`TStatInfoType`* || *Meaning of `statMessage`* || *Team parameter used?* ||
    18 || `siGraphTitle` || Title of the graph. If you use this, the health icon changes into a star. || No ||
    18 || `siGraphTitle` || Title of the graph. If you use this, the health icon changes into a star. || No ||
    19 || `siGameResult` || Title of the stats screen, used to show the result of the game, i.e. who won the game || No ||
    19 || `siGameResult` || Title of the stats screen, used to show the result of the game, i.e. who won the game || No ||
    20 || `siCustomAchievement` || A freeform text for a single “bullet point” in the “bullet point” list in the details section. For each time you call `SendStat` with this `TStatInfoType`, a new “bullet point” gets added to the list. || No ||
    20 || `siCustomAchievement` || A freeform text for a single “bullet point” in the “bullet point” list in the details section. For each time you call `SendStat` with this `TStatInfoType`, a new “bullet point” gets added to the list. || No ||
    21 || `siPointType` || Replaces the word “kills” in the ranking list. You have to call this each time before you report the score or kills of a team with `siPlayerKills`. Since version 1.0.0, there are a few special values you can use (see below). || No ||
    21 || `siPointType` || Replaces the word “kills” in the ranking list. You have to call this each time before you report the score or kills of a team with `siPlayerKills`. Since version 1.0.0, there are a few special values you can use (see below). || No ||
    22 || `siPlayerKills` || Adds a team into the ranking with the given number of kills. The order in which this is called for each team matters. Unless the word “kills” has been replaced by `siPointType`, then that word is used instead. Only integers (converted to string) are possible. 
    22 || `siPlayerKills` || Adds a team into the ranking with the given number of kills. The order in which this is called for each team matters. Unless the word “kills” has been replaced by `siPointType`, then that word is used instead. Only integers (converted to string) are possible. || Yes ||
    23 
       
    24 || Yes ||
       
    25 || `siClanHealth` || Value of a data point. This sets a single data point on the graph for the specified team. All teams will be converted to clans prior to drawing, there can only be one chart per clan. Subsequent calls will draw the next point along the horizontal axis; the frontend will then simply connect the dots in the final chart. Only whole numbers are supported. There must be at least 2 data points for any given clan, otherwise there won't be much to look at. ;-) You also should have called `SendHealthStatsOff` if to prevent the default health graphs to be drawn. || Yes ||
    23 || `siClanHealth` || Value of a data point. This sets a single data point on the graph for the specified team. All teams will be converted to clans prior to drawing, there can only be one chart per clan. Subsequent calls will draw the next point along the horizontal axis; the frontend will then simply connect the dots in the final chart. Only whole numbers are supported. There must be at least 2 data points for any given clan, otherwise there won't be much to look at. ;-) You also should have called `SendHealthStatsOff` if to prevent the default health graphs to be drawn. || Yes ||
    26 || `siMaxStepKills` || Most hedgehogs killed in a round. `statMessage` must be in format “`<kills> <name of killer hedgehog> (<team name of killer>)`”. || No ||
    24 || `siMaxStepKills` || Most hedgehogs killed in a round. `statMessage` must be in format “`<kills> <name of killer hedgehog> (<team name of killer>)`”. || No ||
    27 || `siMaxTeamDamage` || Team with most damage inflicted to self. `statMessage` must be in the format “`<damage> <team name>`”. || No ||
    25 || `siMaxTeamDamage` || Team with most damage inflicted to self. `statMessage` must be in the format “`<damage> <team name>`”. || No ||
    28 || `siKilledHHs` || Total number of killed hedgehogs (converted to string). || No ||
    26 || `siKilledHHs` || Total number of killed hedgehogs (converted to string). || No ||
    29 || `siTeamStats` || This does not have an effect. || No ||
    27 || `siTeamStats` || This does not have an effect. || No ||