LuaAPI.wiki
changeset 685 06cd9e0842e4
parent 650 0a106238f409
child 688 d9fc58ac04f2
equal deleted inserted replaced
684:5488179eb2d2 685:06cd9e0842e4
  1127 
  1127 
  1128 || *`TStatInfoType`* || *Meaning of `statMessage`* || *Team parameter used?* ||
  1128 || *`TStatInfoType`* || *Meaning of `statMessage`* || *Team parameter used?* ||
  1129 || `siGraphTitle` || Title of the graph. If you use this, the health icon changes into a star. || No ||
  1129 || `siGraphTitle` || Title of the graph. If you use this, the health icon changes into a star. || No ||
  1130 || `siGameResult` || Title of the stats screen, used to show the result of the game, i.e. who won the game || No ||
  1130 || `siGameResult` || Title of the stats screen, used to show the result of the game, i.e. who won the game || No ||
  1131 || `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 ||
  1131 || `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 ||
  1132 || `siPointType` || Replaces the word “kills” in the ranking list. Sadly, grammatical number is currently not respected at all here. || No ||
  1132 || `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`. Sadly, grammatical number is currently not respected at all here. || No ||
  1133 || `siPlayerKills` || The number of kills for the specified team (converted to a string), as shown in the ranking list. Unless the word “kills” has been replaced by `siPointType`, then that word is used instead. Only integers (converted to string) are possible. || Yes ||
  1133 || `siPlayerKills` || The number of kills for the specified team (converted to a string), as shown in the ranking list. Unless the word “kills” has been replaced by `siPointType`, then that word is used instead. Only integers (converted to string) are possible. || Yes ||
  1134 || `siClanHealth` || Value of a data point (converted to a string). This sets a single data point on the graph for the specified team. Subsequent calls will draw the next point along the horizontal axis; the frontend will then simply connect the dots in the final graph. The graphs are treated independently for each other. Currently the graph only can display positive values. You also should have called `SendHealthStatsOff` if you use this to prevent the default health graphs to be drawn. || Yes ||
  1134 || `siClanHealth` || Value of a data point (converted to a string). This sets a single data point on the graph for the specified team. Subsequent calls will draw the next point along the horizontal axis; the frontend will then simply connect the dots in the final graph. The graphs are treated independently for each other. Currently the graph only can display positive values. You also should have called `SendHealthStatsOff` if you use this to prevent the default health graphs to be drawn. || Yes ||
  1135 || `siMaxStepKills` || Most hedgehogs killed in a round. `statText` must be in format “`<kills> <name of killer hedgehog> (<team name of killer>)`”. || No ||
  1135 || `siMaxStepKills` || Most hedgehogs killed in a round. `statText` must be in format “`<kills> <name of killer hedgehog> (<team name of killer>)`”. || No ||
  1136 || `siMaxTeamDamage` || Hedgehog with most damage inflicted to his own team. `statText` must be in the format “`<damage> <hedgehog name>`”. || No ||
  1136 || `siMaxTeamDamage` || Hedgehog with most damage inflicted to his own team. `statText` must be in the format “`<damage> <hedgehog name>`”. || No ||
  1137 || `siKilledHHs` || Total number of killed hedgehogs (converted to string). || No ||
  1137 || `siKilledHHs` || Total number of killed hedgehogs (converted to string). || No ||