steam_get_stat_int(stat_name);
Argument | Description |
---|---|
stat_name | The name of the statistic to get (a string). |
Returns: Real
With this function you can get the value of a specific signed
integer 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.
xp += 100;
steam_set_stat_int("Total_XP", steam_get_stat_int("Total_XP") +
100);
if steam_get_stat_int("Total_XP") > 1000
{
if !steam_get_achievement("Ach_1000XP")
steam_set_achievement("Ach_1000XP");
}
The above code sets a statistic and then checks the final value for it to decide whether to award an achievement or not.