View Single Post
03/23/19, 08:10 AM   #4
Aaxc
 
Aaxc's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2019
Posts: 19
Originally Posted by votan View Post
The "General" sub-category is "nil" as the second parameter.
No, it does not seem like that, here:

Request: GetAchievementCategoryInfo(16)
Response: [Dragon Bones, 1, 8, 355, 875, false]
Request: GetAchievementSubCategoryInfo(16, nil)
Response: [Veteran, 30, 320, 730, false]
Request: GetAchievementCategoryInfo(16, 1)
Response: [Veteran, 30, 320, 730, false]
In comparison Wolfhunter also has the same two subcategories (General and Veteran):

Request: GetAchievementCategoryInfo(15)
Response: [Wolfhunter, 2, 0, 220, 840, false]
And you can get 1 and 2 there:

Request: GetAchievementSubCategoryInfo(15, nil)
Response: [General, 9, 30, 150, false]
Request: GetAchievementSubCategoryInfo(15, 1)
Response: [General, 9, 30, 150, false]
Request: GetAchievementSubCategoryInfo(15, 2)
Response: [Veteran, 29, 190, 690, false]
  Reply With Quote