gms_statistic_find
Usage: gms_statistic_find ( n )
Description
Returns the name of the nth stat.
Example
//Show the description of all the stats
var n, name, desc;
for(n = 0; n < gms_statistic_count(); n += 1)
{
name = gms_statistic_find(n);
desc = gms_statistic_description(name)
show_message("Stat description: "+desc);
}