Garry's Mod Wiki

achievements.GetGoal

  number achievements.GetGoal( number achievementID )

Description

Retrieves progress goal of given achievement

Arguments

1 number achievementID
The ID of achievement to retrieve goal of. Note: IDs start from 0, not 1.

Returns

1 number
Progress goal of an achievement

Example

Will print achievement progress and goals for all of your achievements into console

for i = 0, achievements.Count() - 1 do print( achievements.GetCount( i ) .. " / " .. achievements.GetGoal( i ) ) end
Output: Prints achievement progress and goals for all of your achievements into console.