WoW:AchievementLink: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(New page: {{Wowapi}} == achievementLink API Type (String) == achievementLinks are returned by GetAchievementLink(). == Anatomy of a achievementLink == |cffffff00|Hachiev...)
 
m (Move page script moved page AchievementLink to AchievementLink without leaving a redirect)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Wowapi}}
{{Wowapi}}
== achievementLink API Type (String) ==
Achievement links are returned by [[API GetAchievementLink|GetAchievementLink]]().
achievementLinks are returned by [[API GetAchievementLink|GetAchievementLink]]().


== Anatomy of a achievementLink ==
== Format ==
Finished:
  |cffffff00|Hachievement:2186:00000000002FDDE9:1:12:19:8:4294967295:4294967295:4294967295:4294967295|h[The Immortal]|h|r
  |cffffff00|Hachievement:2186:00000000002FDDE9:1:12:19:8:4294967295:4294967295:4294967295:4294967295|h[The Immortal]|h|r
Unfinished:
|cffffff00|Hachievement:1284:00000000002FDDE9:0:0:0:-1:65529:0:0:0|h[Outland Dungeonmaster]|h|r


* '''"|cffffff00"''' - Colorizes the link (see [[itemLink]])
* '''"|cffffff00"''' - Colorizes the link (see [[itemLink]])
* '''"|H"''' - Hyperlink introduction
* '''"|H"''' - Hyperlink introduction
* '''"achievement:2186"''' - Achievement ID
* '''"achievement:1284:00000000002FDDE9:0:0:0:-1:65529:0:0:0"''' – Read more at [[AchievementString|Achievement String]].
* '''"00000000002FDDE9"''' - Character ID
* '''"1"''' - Status of this achievement. "1" means finished, and vice versa.
* '''"12"''' - Month this was finished.
* '''"19"''' - Day this was finished.
* '''"8"''' - Year this was finished, starts from 2000.
* '''"4294967295"''' - Flags of details of this. (#1)
* '''"4294967295"''' - Flags of details of this. (#2)
* '''"4294967295"''' - Flags of details of this. (#3)
* '''"4294967295"''' - Flags of details of this. (#4)
* '''"|h"''' - Hyperlink data concluded, text follows
* '''"|h"''' - Hyperlink data concluded, text follows
* '''"[The Immortal]"''' - Display text
* '''"[Outland Dungeonmaster]"''' - Display text
* '''"|h"''' - Hyperlink conclusion
* '''"|h"''' - Hyperlink conclusion
* '''"|r"''' - Returns color to normal
* '''"|r"''' - Returns color to normal
== Details ==
The detail list portion of the achievementLink is a bitset representing which items are finished.

Latest revision as of 04:44, 15 August 2023

WoW API

Achievement links are returned by GetAchievementLink().

Format[edit]

Finished:

|cffffff00|Hachievement:2186:00000000002FDDE9:1:12:19:8:4294967295:4294967295:4294967295:4294967295|h[The Immortal]|h|r

Unfinished:

|cffffff00|Hachievement:1284:00000000002FDDE9:0:0:0:-1:65529:0:0:0|h[Outland Dungeonmaster]|h|r
  • "|cffffff00" - Colorizes the link (see itemLink)
  • "|H" - Hyperlink introduction
  • "achievement:1284:00000000002FDDE9:0:0:0:-1:65529:0:0:0" – Read more at Achievement String.
  • "|h" - Hyperlink data concluded, text follows
  • "[Outland Dungeonmaster]" - Display text
  • "|h" - Hyperlink conclusion
  • "|r" - Returns color to normal