steam_get_stat_avg_rate

Get the value of an average statistic.

Syntax:

steam_get_stat_avg_rate(stat_name);


Argument Description
stat_name The name of the statistic to get (a string).


Returns: Real


Description

With this function you can get the value of a specific average statistic. The statistic should have been previously defined on the Steamworks control panel accounts page for your game and the string that is passed to the function should match that used as the API Name on the control panel.


Example:

var avg = steam_get_stat_avg_rate("PointsPerHour");
draw_text(8, 8, "PPH = " + string(avg);

The above code gets the current value for the average statistic "PointsPerHour" and draws it on the screen.


Back: Steam API
Next: steam_reset_all_stats
© Copyright YoYo Games Ltd. 2018 All Rights Reserved